body {
    background: #fafafa;
}

.logo-text {
    color: #1a202c;
}

.team-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin-top: 80px;
    position: relative;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.team-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.team-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.team-hero p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #666;
    font-weight: 400;
}

.team-grid-section {
    padding: 120px 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e5e5e5;
}

.team-card {
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding: 60px;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: #fafafa;
}

.team-card-content {
    max-width: 800px;
}

.team-card-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.team-card-content .role {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 500;
}

.team-card-content .bio {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.team-card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-card-image {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .team-hero {
        min-height: 40vh;
    }

    .team-grid-section {
        padding: 80px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .team-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
    }

    .team-card-image {
        width: 100px;
        height: 100px;
        justify-self: start;
    }

    .team-card-content h3 {
        font-size: 28px;
    }

    .team-card-content .role {
        font-size: 16px;
    }

    .team-card-content .bio {
        font-size: 15px;
    }
}