body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #e3fdfd, #ffe6fa); /* Subtle gradient for the background */
}

header {
    background-color: rgba(51, 51, 51, 0.8); /* Dark semi-transparent background for the header */
    color: white;
    padding: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(51, 51, 51, 0.8); /* Darker background for the nav */
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.hero {
    height: 90vh;
    background: url('hero-image.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Improves readability on image background */
}

.hero p {
    font-size: 1.5rem;
    margin: 10px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Makes text pop */
}

.hero .btn {
    margin: 20px 10px;
    padding: 15px 25px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
}

.hero .btn:hover {
    background-color: #005bb5;
}

main {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background for the main content */
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2.5rem;
    color: #333;
}

section p, section ul {
    font-size: 1.2rem;
    color: #555;
}

section ul li {
    margin-bottom: 10px;
    list-style: circle;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.btn {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
    display: inline-block;
    margin: 10px;
}

.btn:hover {
    background-color: #004d99;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.impact-stats div {
    text-align: center;
}

.programs-list {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero .btn {
        padding: 10px 15px;
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        margin: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        padding: 30px 10px;
    }
}
