/* Modern About Hero Section */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 65, 148, 0.88) 0%, rgba(30, 58, 138, 0.82) 100%);
    display: flex;
    align-items: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(10, 25, 61, 0.78);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: white;
}

.about-hero-text {
    max-width: 750px;
    margin: 0 auto;
}

.about-hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.98;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    color: white;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--neutrals-0);
}

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

.team-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.team-description {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Modern Team Cards */
.team-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(14, 65, 148, 0.15);
}

.team-card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-image {
    transform: scale(1.05);
}

.team-card-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.team-card-role {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0e4194;
    opacity: 0.9;
}

.team-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.team-card-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.team-card-contact svg {
    color: #0e4194;
    opacity: 0.7;
    flex-shrink: 0;
}

.team-card-email {
    color: var(--textcolor-80contrast);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    word-break: break-word;
}

.team-card-email:hover {
    color: #0e4194;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-text p {
        font-size: 1.05rem;
    }

    .team-title {
        font-size: 2.25rem;
    }

    .team-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-text p {
        font-size: 1rem;
    }

    .about-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-description {
        font-size: 1rem;
    }

    .team-card-image-wrapper {
        height: 240px;
    }

    .team-card-image {
        width: 150px;
        height: 150px;
    }

    .team-card-name {
        font-size: 1.2rem;
    }

    .team-card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-content {
        padding: 2rem 1rem;
    }

    .team-section {
        padding: 3rem 0;
    }

    .team-intro {
        margin-bottom: 3rem;
    }
}
