.team-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-section,
.technical-section {
    margin-bottom: 5rem;
}

.leadership-section h2,
.technical-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-member.featured {
    border-top: 4px solid var(--accent-color);
}

.member-photo {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-experience {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-bio {
    margin-bottom: 1.5rem;
}

.member-bio p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.member-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-certifications,
.member-achievements {
    margin-top: 1.5rem;
}

.member-certifications h4,
.member-achievements h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.member-certifications ul,
.member-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-certifications li,
.member-achievements li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #4b5563;
    font-size: 0.9rem;
}

.member-certifications li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.member-achievements li::before {
    content: '📈';
    position: absolute;
    left: 0;
}

.team-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
}

.team-stats h2 {
    margin-bottom: 3rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.team-culture {
    margin: 4rem 0;
}

.team-culture h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.culture-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item p {
    color: #4b5563;
    line-height: 1.6;
}

.join-team-cta {
    background: #f8fafc;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
}

.join-team-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.join-team-cta p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-stats {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .member-specializations {
        justify-content: center;
    }
    
    .spec-tag {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
