/* Specific styles for the Grants Page */

.main-content {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.main-content h3 {
    color: #2e7d32; /* Darker green to match the theme */
    border-bottom: 2px solid lightgreen;
    padding-bottom: 5px;
    margin-top: 30px;
}

/* Call to Action Link */
.grant-link {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.grant-link:hover {
    background-color: #1b5e20;
}

/* List Styling */
.rebate-info ul {
    padding-left: 20px;
}

.rebate-info li {
    margin-bottom: 10px;
}

/* Deadline Box - Highlighted for visibility */
.deadlines-box {
    background-color: #fff3e0; /* Light warning orange */
    border-left: 5px solid #ff9800;
    padding: 15px 20px;
    margin-top: 40px;
    border-radius: 4px;
}

.deadline-item {
    margin-bottom: 15px;
}

.deadline-item strong {
    color: #e65100;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .grant-link {
        display: block;
        text-align: center;
    }
}