

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--surface);
            padding-top: 80px;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Hero Section */
        .team-hero {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .team-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 1;
        }

        .team-hero .container {
            position: relative;
            z-index: 2;
        }

        .back-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-link:hover {
            color: var(--accent);
            transform: translateX(-5px);
        }

        .hero-content {
            display: flex;
            gap: 3rem;
            align-items: center;
            color: white;
        }

        .hero-image {
            width: 250px;
            height: 250px;
            border-radius: 20px;
            object-fit: cover;
            border: 5px solid var(--accent);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-info h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .hero-role {
            font-size: 1.5rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .meta-item i {
            color: var(--accent);
        }

        .hero-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
        }

        .info-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .bio-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .expertise-item {
            background: var(--surface);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .expertise-item:hover {
            border-left-color: var(--primary);
            transform: translateX(5px);
        }

        .achievement-list {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .achievement-list li {
            padding: 1rem 1.5rem;
            background: var(--surface);
            border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: start;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .achievement-list li:hover {
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .achievement-list i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .credential-box {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }

        .credential-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .credential-list {
            list-style: none;
            padding: 0;
        }

        .credential-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .credential-list li:last-child {
            border-bottom: none;
        }

        .credential-list i {
            color: var(--accent);
            margin-right: 0.5rem;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--primary) 0%, #5a141f 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 3rem;
        }

        .contact-cta h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .contact-cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn-primary {
            background: var(--accent);
            color: white;
        }

        .cta-btn-primary:hover {
            background: #8a7350;
            color: white;
            transform: translateY(-2px);
        }

        .cta-btn-secondary {
            background: white;
            color: var(--primary);
        }

        .cta-btn-secondary:hover {
            background: var(--surface);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Related Team */
        .related-team {
            background: var(--white);
            padding: 80px 0;
        }

        .team-card-small {
            background: var(--surface);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .team-card-small:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .team-img-small {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--accent);
        }

        .team-name-small {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .team-role-small {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .view-profile-btn {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .view-profile-btn:hover {
            background: #5a141f;
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-info h1 {
                font-size: 2rem;
            }

            .hero-role {
                font-size: 1.2rem;
            }

            .hero-meta {
                justify-content: center;
            }

            .hero-social {
                justify-content: center;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }
        }