/* Modern About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.95));
    color: #fff;
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 0;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission {
    padding: 4rem 0;
    position: relative;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff, rgba(248, 249, 250, 0));
    z-index: 1;
}

.about-mission .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-mission h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #0d1b2a;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-mission h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #f4c10f;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.mission-image {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.team-section {
    padding: 4rem 0 3rem;
    background-color: #f8f9fa;
    position: relative;
}

.team-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.team-header h2 {
    font-size: 2.2rem;
    color: #0d1b2a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.team-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #f4c10f;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.team-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    padding: 0 0.5rem;
}

.team-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
}

.team-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.team-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.team-scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.team-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.team-grid {
    display: inline-flex;
    gap: 2rem;
    padding: 0 2rem;
    margin: 0;
    width: auto;
    white-space: nowrap;
}

.team-member-card {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: normal;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-photo {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem 1rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.member-role {
    color: #f4c10f;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }
    
    .team-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-hero {
        height: 55vh;
        min-height: 450px;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .member-photo {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
        padding: 4rem 1.5rem;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .team-header {
        margin-bottom: 2rem;
    }
    
    .team-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .team-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .member-photo {
        height: 240px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
        min-height: 380px;
        padding: 3.5rem 1.25rem;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .about-hero p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .team-section {
        padding: 3rem 0 2.5rem;
    }
    
    .team-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .team-header p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0;
    }
    
    .team-grid {
        gap: 1.25rem;
        padding: 0 1.25rem;
    }
    
    .team-member-card {
        width: 260px;
    }
    
    .member-photo {
        height: 220px;
    }
    
    .member-info {
        padding: 1.25rem 0.75rem;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
}
