.about-breadcrumb {
    background-size: cover;
    background-position: center;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(45, 70, 57, 0.08);
    height: 100%;
    border: 1px solid rgba(183, 146, 72, 0.15);
}
.about-mission-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 146, 72, 0.12);
    color: var(--theme);
    font-size: 22px;
    margin-bottom: 18px;
}
.about-mission-card h4 {
    font-size: 20px;
    color: var(--theme-secondary);
    margin-bottom: 10px;
}
.about-mission-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #555;
}
.about-expertise-card h4 {
    font-size: 18px;
}
.about-cta-band {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #3a5647 100%);
    border-radius: 20px;
    padding: 48px 40px;
    color: #fff;
    text-align: center;
}
.about-cta-band h2 {
    color: #fff;
    margin-bottom: 14px;
}
.about-cta-band p {
    max-width: 640px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.65;
}
.about-map-wrap iframe {
    border: 0;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    display: block;
}
@media (max-width: 991px) {
    .about-mission-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .about-cta-band {
        padding: 36px 24px;
    }
    .about-map-wrap iframe {
        height: 300px;
    }
}
