/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff !important;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Team Introduction */
.team-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.leadership-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.leadership-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #ffffff;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.leadership-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: #3498db;
}

.leadership-photo {
    height: 550px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.leadership-card:hover .leadership-photo img {
    transform: scale(1.05);
}

.leadership-card .member-info {
    padding: 40px 30px;
}

.leadership-card .member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.leadership-card .member-title {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Team Members */
.team-members {
    padding: 100px 0;
    background: #ffffff;
}

.team-members h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.member-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(44, 90, 160, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(44, 90, 160, 0.2);
    border-color: #2c3e50;
}

.member-photo {
    height: 200px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}



.placeholder-photo {
    font-size: 4rem;
    color: #ffffff;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.member-title {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: #2c3e50;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Team Values */
.team-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-values h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 90, 160, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 90, 160, 0.15);
    border-color: #2c3e50;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    color: #495057;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .leadership-section h2 {
        font-size: 2rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leadership-photo {
        height: 350px;
    }
    
    .leadership-card .member-info {
        padding: 30px 25px;
    }
    
    .leadership-card .member-info h3 {
        font-size: 1.6rem;
    }
    
    .team-members h2 {
        font-size: 2rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .member-info {
        padding: 25px 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }

    .member-title {
        font-size: 0.92rem;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .leadership-section h2 {
        font-size: 1.8rem;
    }
    
    .leadership-card .member-info h3 {
        font-size: 1.4rem;
    }
    
    .team-members h2 {
        font-size: 1.8rem;
    }
    
    .team-values h2 {
        font-size: 2rem;
    }
    
    .member-photo {
        height: 150px;
    }
    
    .leadership-photo {
        height: 300px;
    }
    
    .placeholder-photo {
        font-size: 3rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
} 

.leadership-section .members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
} 