body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #265a34;
    /* Deep green from logo */
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Intro Section */
.intro-section {
    text-align: center;
    padding: 60px 0;
}

.intro-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.intro-section p {
    color: #444;
    max-width: 900px;
    margin: 0 auto;
}

/* 3. Team Grid & Crescent Rings */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
    padding-bottom: 100px;
    text-align: center;
}

/* Ring Effect: Stacked shadows create the yellow/green border from the design */
.image-ring {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    overflow: hidden;
    /* Matching the screenshot's yellow and lime rings */
    box-shadow:
        0 0 0 6px #f3e947,
        0 0 0 10px #c5d92d;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 22px;
}

.team-card p {
    font-size: 14px;
    color: #666;
    margin: 0 auto;
    max-width: 200px;
}

/* 4. Responsive Logic */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fef8d3;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: 0.4s ease-in-out;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding: 30px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-top: 50px;
    text-align: center;
}

.image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 4px solid #c5d92d;
    /* Matching the image's yellow ring */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Intro Section */
.intro-section {
    text-align: center;
    padding: 60px 15%;
}

.intro-section h1 {
    color: #2d5a27;
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 10% 80px 10%;
    text-align: center;
}

/* The Circular Profile Frames */
.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 8px;
    /* The gap for the border */
    background: linear-gradient(135deg, #c5d92d 0%, #2d5a27 100%);
    /* The yellow-green ring */
    margin-bottom: 15px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
}

.team-card h3 {
    color: #2d5a27;
    margin: 10px 0 5px 0;
    font-size: 1.2rem;
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
    max-width: 200px;
}