/* Team section styles */
.team-section {
    padding: 4rem 0 0 0;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.team-section .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.team-section .floating-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.team-member {
    padding: 2rem;
    text-align: center;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-member .title {
    display: block;
    color: #7A4FFC;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-member p {
    opacity: 0.8;
    line-height: 1.6;
}

.team-photo {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .team-header h2 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-section .container {
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
} 