/* General adjustments */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Light background for better readability */
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    background-color: #004080;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-warning {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Schemes Section */
#schemes {
    padding: 50px 0;
}

.scheme .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004080;
}

.scheme .card-text {
    font-size: 0.9rem;
    color: #555;
}

.card {
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Impact Section */
#impact {
    padding: 50px 0;
}

#impact h2 {
    margin-bottom: 40px;
}

.display-5 {
    font-size: 2rem;
    font-weight: 700;
}

.text-warning {
    color: #ffcc00 !important;
}

/* Contact Section */
#contact {
    padding: 50px 0;
}

address {
    font-style: normal;
    color: #666;
}

/* Footer */
footer {
    padding: 15px 0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    #schemes h2, #impact h2, #contact h2 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }
}
