/* General Reset */
body, h1, h2, h3, p, ul, li, img, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background: #004d40;
    color: #fff;
    padding: 20px 0;
}
header .logo {
    width: 150px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: #80cbc4;
    color: #004d40;
    text-align: center;
    padding: 100px 0;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero .btn {
    background: #004d40;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
}
.hero .btn:hover {
    background: #00332e;
}

/* Sections */
section {
    padding: 50px 0;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #004d40;
}

/* About Section */
.about .director {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.about .director img {
    width: 150px;
    border-radius: 50%;
}

/* Services Section */
.services .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.services .service {
    background: #e0f2f1;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services .service h3 {
    color: #004d40;
    margin-bottom: 10px;
    text-align: center;
}

.services .service ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.8;
}

.services .intro {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}


/* Team Section */
.team {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #004d40;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Grid Layout */
.team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Team Card */
.team .team-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Team Member Image */
.team .team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Team Card Content */
.team .team-card .card-content {
    padding: 20px;
}

.team .team-card h3 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #004d40;
    font-weight: bold;
}

.team .team-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.team .team-card .role {
    font-size: 1.1rem;
    color: #00796b;
    font-weight: bold;
    margin-bottom: 10px;
}

.team .team-card .bio {
    text-align: left;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .team h2 {
        font-size: 2rem;
    }
    .team .team-grid {
        grid-template-columns: 1fr;
    }
}
/* Events Section */
.events .gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.events .gallery img {
    width: 200px;
    border-radius: 10px;
}

/* Contact Section */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.contact form input, .contact form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.contact form button {
    background: #004d40;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.contact form button:hover {
    background: #00332e;
}
.contact-info {
    text-align: center;
}

/* Footer */
footer {
    background: #004d40;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services .service-list {
        flex-direction: column;
        align-items: center;
    }

    .team .team-member {
        flex-direction: column;
        text-align: center;
    }

    .events .gallery {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .services .service {
        padding: 10px;
    }
}
