 .team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 100px;
    height: 200px;
    border-radius: 10%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.member-details {
    margin-bottom: 20px;
}

.member-details p {
    margin: 5px 0;
    color: #666;
    font-size: 0.95em;
}

.member-role {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.member-email {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.member-email:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .team-intro {
        padding: 0 20px;
        font-size: 1em;
        margin-bottom: 40px;
    }
    
    .member-photo img {
        width: 120px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 40px 0;
    }
    
    .team-member {
        padding: 25px 15px;
    }
    
    .team-intro {
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .member-details p {
        font-size: 0.9em;
    }
}