* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #2e7d32;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
}

nav a.active,
nav a:hover {
    border-bottom: 2px solid white;
}


/* About page specific styles */

.about-hero {
    background-color: #4caf50;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.about-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-section {
    flex: 1;
    min-width: 300px;
}

.about-section h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-section ul {
    list-style-position: inside;
    line-height: 1.6;
}

.about-section li {
    margin-bottom: 0.5rem;
}

.team {
    background-color: #e8f5e9;
    padding: 2rem;
}

.team h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2e7d32;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 250px;
    text-align: center;
}

.member-photo {
    height: 150px;
    width: 150px;
    background-color: #c8e6c9;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.team-member h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.facilities {
    padding: 2rem;
    text-align: center;
}

.facilities h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.facilities p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 200px;
    width: 280px;
    background-color: #e8f5e9;
    border-radius: 8px;
}


/* Footer styles */

footer {
    background-color: #2e7d32;
    color: white;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer div {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 200px;
}

footer h3 {
    margin-bottom: 1rem;
}

.copyright {
    flex-basis: 100%;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}


/* Responsive styles */

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    nav ul {
        margin-top: 1rem;
    }
    .about-content {
        flex-direction: column;
    }
    .team-container {
        flex-direction: column;
        align-items: center;
    }
}



footer iframe {
    width: 100%;
    height: 300px;
    max-width: 100%;
    border: 0;
    display: block;
    margin-bottom: 1.5rem; 
}

footer .contact,
footer .hours {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
    }

    footer .content {
        order: 1;
    }

    footer .contact {
        order: 2;
    }

    footer .hours {
        order: 3;
    }

    footer .copyright {
        order: 4;
        margin-top: 1.5rem;
    }

    footer iframe {
        height: 250px;
        margin-bottom: 1.5rem;
    }
}





footer .content {
    padding-right: 1rem; 
}

footer .contact {
    padding-left: 1rem; 
}
