            /* Additional styles specific to team page */
            .hero-team {
                min-height: 70vh;
                display: flex;
                align-items: center;
                padding: 8rem 5% 4rem;
                position: relative;
                background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest) 100%);
                color: var(--color-white);
                overflow: hidden;
            }

            .hero-team::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></svg>') repeat;
                opacity: 0.3;
            }

            .hero-team-content {
                max-width: 1400px;
                margin: 0 auto;
                text-align: center;
                position: relative;
                z-index: 1;
            }

            .hero-team-label {
                display: inline-block;
                padding: 0.5rem 1.5rem;
                background: rgba(255,255,255,0.2);
                color: var(--color-white);
                font-size: 0.85rem;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 2rem;
                border-radius: 50px;
                backdrop-filter: blur(10px);
            }

            .hero-team-title {
                font-family: 'Playfair Display', serif;
                font-size: 5rem;
                font-weight: 900;
                margin-bottom: 1.5rem;
                line-height: 1.1;
            }

            .hero-team-subtitle {
                font-size: 1.4rem;
                max-width: 700px;
                margin: 0 auto;
                opacity: 0.9;
                font-weight: 300;
                line-height: 1.8;
            }

            /* Leadership Section */
            .leadership-section {
                padding: 6rem 5%;
                background: var(--color-white);
                position: relative;
            }

            .leadership-header {
                max-width: 1400px;
                margin: 0 auto 4rem;
                text-align: center;
            }

            .leadership-grid {
                max-width: 1400px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 3rem;
            }

            .leader-card {
                background: var(--color-cream);
                border-radius: 30px;
                overflow: hidden;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                display: flex;
                flex-direction: column;
            }

            .leader-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            }

            .leader-image-wrapper {
                width: 100%;
                height: 450px;
                overflow: hidden;
                position: relative;
                background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-forest) 100%);
            }

            .leader-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center 20%;
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                filter: grayscale(20%);
            }

            .leader-card:hover .leader-image {
                transform: scale(1.05);
                filter: grayscale(0%);
            }

            .leader-badge {
                position: absolute;
                bottom: 20px;
                left: 20px;
                background: var(--color-gold);
                color: var(--color-white);
                padding: 0.5rem 1rem;
                border-radius: 50px;
                font-size: 0.8rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }

            .leader-info {
                padding: 2.5rem;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                position: relative;
            }

            .leader-name {
                font-family: 'Playfair Display', serif;
                font-size: 1.9rem;
                font-weight: 700;
                color: var(--color-forest-dark);
                margin-bottom: 0.5rem;
                line-height: 1.2;
            }

            .leader-role {
                font-size: 1rem;
                color: var(--color-gold);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 1.5rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .leader-role::before {
                content: '';
                display: inline-block;
                width: 30px;
                height: 2px;
                background: var(--color-gold);
            }

            .leader-bio {
                font-size: 1rem;
                color: var(--color-earth);
                line-height: 1.8;
                margin-bottom: 1.5rem;
                flex-grow: 1;
            }

            .leader-social {
                display: flex;
                gap: 1rem;
                padding-top: 1.5rem;
                border-top: 1px solid rgba(0,0,0,0.1);
            }

            .social-link {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: var(--color-forest);
                color: var(--color-white);
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 1.1rem;
            }

            .social-link:hover {
                background: var(--color-gold);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
            }

            /* Featured Leader (CEO Highlight) */
            .featured-leader {
                grid-column: 1 / -1;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0;
                background: var(--color-white);
                border-radius: 30px;
                overflow: hidden;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
                margin-bottom: 3rem;
            }

            .featured-image-wrapper {
                height: 600px;
                position: relative;
                overflow: hidden;
            }

            .featured-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
            }

            .featured-content {
                padding: 4rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
                position: relative;
            }

            .featured-content::before {
                content: '"';
                position: absolute;
                top: 2rem;
                right: 2rem;
                font-family: 'Playfair Display', serif;
                font-size: 10rem;
                color: var(--color-gold);
                opacity: 0.2;
                line-height: 1;
            }

            .featured-label {
                color: var(--color-gold);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 1rem;
                font-size: 0.9rem;
            }

            .featured-name {
                font-family: 'Playfair Display', serif;
                font-size: 3rem;
                color: var(--color-forest-dark);
                margin-bottom: 1rem;
                line-height: 1.2;
            }

            .featured-role {
                font-size: 1.2rem;
                color: var(--color-forest);
                font-weight: 600;
                margin-bottom: 2rem;
                padding-bottom: 2rem;
                border-bottom: 2px solid var(--color-gold);
            }

            .featured-bio {
                font-size: 1.1rem;
                color: var(--color-earth);
                line-height: 1.9;
                margin-bottom: 2rem;
            }

            .featured-quote {
                font-style: italic;
                color: var(--color-forest);
                font-size: 1.2rem;
                padding-left: 1.5rem;
                border-left: 4px solid var(--color-gold);
                margin-top: auto;
            }

            /* Responsive */
            @media (max-width: 1024px) {
                .hero-team-title {
                    font-size: 3.5rem;
                }

                .featured-leader {
                    grid-template-columns: 1fr;
                }

                .featured-image-wrapper {
                    height: 400px;
                }
            }

            @media (max-width: 768px) {
                .hero-team-title {
                    font-size: 2.5rem;
                }

                .leadership-grid {
                    grid-template-columns: 1fr;
                }

                .leader-image-wrapper {
                    height: 400px;
                }

                .featured-content {
                    padding: 2.5rem;
                }

                .featured-name {
                    font-size: 2rem;
                }

                .philosophy-title {
                    font-size: 2rem;
                }
            }

            @media (max-width: 480px) {
                .hero-team-title {
                    font-size: 2rem;
                }

                .leader-info {
                    padding: 1.5rem;
                }

                .leader-name {
                    font-size: 1.5rem;
                }
            }

            /* Animation classes */
            .fade-in-up {
                animation: fadeInUp 0.8s ease-out forwards;
                opacity: 0;
                transform: translateY(30px);
            }

            .delay-1 { animation-delay: 0.1s; }
            .delay-2 { animation-delay: 0.2s; }
            .delay-3 { animation-delay: 0.3s; }
            .delay-4 { animation-delay: 0.4s; }