:root {
    --about-card-shadow: 0 16px 32px rgba(0,0,0,0.10);
}

.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.55);
    z-index: 1;
}
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
}
.about-hero .hero-content h1 {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 56px;
    letter-spacing: 0.4px;
}

.about-intro.right-place {
    padding: 90px 0 80px;
}
.about-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
}
.about-actions .btn-outline {
    color: #000000;
}
.about-actions .btn-outline:hover,
.about-actions .btn-outline.animating {
    color: #000000;
}
.about-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-blue);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.about-social a i {
    font-size: 22px;
}

.about-values {
    background: var(--white);
    color: var(--dark-blue);
    padding: 70px 0;
}
.about-team {
    background: #f1f1f1;
    color: var(--dark-blue);
    padding: 60px 0;
}
.about-team h2 {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    text-align: center;
}
.team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.team-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    background: var(--white);
    color: var(--dark-blue);
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 10px;
    box-shadow: var(--about-card-shadow);
    padding: 0;
    min-height: 240px;
    align-items: center;
    overflow: hidden;
}
.team-photo {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.08);
    border-radius: 0;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-details {
    padding: 16px;
}
.team-details p {
    margin: 4px 0;
    font-size: 16px;
}
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        grid-template-columns: 200px 1fr;
        min-height: 220px;
    }
    .team-photo {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 600px) {
    .about-team {
        padding: 40px 0;
    }
    .team-grid {
        gap: 12px;
    }
    .team-card {
        grid-template-columns: 110px 1fr;
        min-height: 150px;
        border-radius: 8px;
        width: 100%;
        overflow: hidden;
    }
    .team-photo {
        height: 100%;
        max-width: 100%;
    }
    .team-details {
        padding: 10px;
        max-width: 100%;
    }
    .team-details p {
        font-size: 12px;
        line-height: 1.5;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin: 2px 0;
    }
}
.values-grid {
    width: 80%;
    margin: 0 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 10px;
    box-shadow: var(--about-card-shadow);
    padding: 20px 18px;
    text-align: center;
}
.value-card .value-icon-top {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 10px auto;
}
.value-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-blue);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 6px;
    display: inline-block;
}
.value-card h3 .value-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: -2px;
    object-fit: contain;
}
.value-card p {
    line-height: 1.7;
    color: var(--dark-blue);
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-hero .hero-content h1 {
        font-size: 42px;
    }
}
