{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333;
    background-color: #fff;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 60px;
    margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #173f33d3;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #E6A400;
}

/* ABOUT SECTION */
.about {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about img {
    width: 1000px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.about-text {
    max-width: 600px;
    
}

.about-text h2 {
    color: #00563F;
    margin-bottom: 20px;
}

/* CTA SECTION */
.cta {
    background-color: #00563F;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta .btn {
    background-color: #E6A400;
    margin-top: 20px;
}

/* FOOTER */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 70px;
}

.footer-links a {
    color: #E6A400;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    .about-content {
        flex-direction: column;
    }
    .mission-cards, .program-list {
        flex-direction: column;
    }
}
