.about-page .about-hero {
    min-height: 270px;
    padding: 48px 28px 42px;
}

.about-hero .hero-inner {
    max-width: 900px;
    padding: 0;
}

.about-hero .eyebrow {
    margin-bottom: 18px;
}

.about-hero h1 {
    max-width: 760px;
    margin-inline: auto;
}

.about-hero .hero-lead {
    max-width: 780px;
}

.about-section {
    padding-top: 72px;
    padding-bottom: 84px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 32px;
    align-items: start;
}

.about-card {
    padding: clamp(28px, 4vw, 54px);
}

.about-content {
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.95;
}

.about-content blockquote {
    margin: 0 0 30px;
    padding: 22px 26px;
    border-right: 4px solid var(--accent);
    border-radius: 16px 0 0 16px;
    background: linear-gradient(135deg, rgba(0, 82, 255, .08), rgba(77, 124, 255, .03));
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 600;
}

.about-content h2 {
    position: relative;
    margin: 42px 0 16px;
    padding-right: 19px;
    color: var(--ink);
    font-family: "Rubik", sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.45;
}

.about-content h2::before {
    position: absolute;
    top: .3em;
    right: 0;
    width: 6px;
    height: 1em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    content: "";
}

.about-content p {
    margin: 0 0 20px;
}

.about-content ul {
    display: grid;
    gap: 11px;
    margin: 18px 0 28px;
    padding: 0;
    list-style: none;
}

.about-content li {
    position: relative;
    padding-right: 31px;
}

.about-content li::before {
    position: absolute;
    top: .48em;
    right: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    content: "\2713";
    font-size: .78rem;
    font-weight: 800;
}

.about-side {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: grid;
    gap: 20px;
}

.about-contact-card,
.about-values-card,
.about-lead-card,
.about-facebook-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-contact-card {
    text-align: center;
}

.about-contact-icon {
    display: grid;
    width: 120px;
    height: 72px;
    margin-bottom: 6px;
    margin-inline: auto;
    place-items: center;
}

.about-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.about-contact-card h2,
.about-values-card h2,
.about-lead-card h2 {
    margin-bottom: 9px;
    font-family: "Rubik", sans-serif;
    font-size: 1.25rem;
}

.about-contact-card address {
    margin: 0 0 20px;
    color: var(--ink-soft);
    font-style: normal;
    line-height: 1.8;
}

.about-contact-links {
    display: grid;
    gap: 10px;
}

.about-contact-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--ink);
    font-weight: 600;
}

.about-contact-links i {
    width: 20px;
    color: var(--accent);
    text-align: center;
}

.about-values-card {
    background: linear-gradient(145deg, #14234b, #1d3470);
    color: #fff;
}

.about-values-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
}

.about-lead-card {
    text-align: center;
}

.about-lead-card > p {
    margin: 0 0 20px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.about-contact-form {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
    background: transparent;
}

.about-facebook-card {
    padding: 10px;
    text-align: center;
}

.about-facebook-frame {
    display: block;
    width: 100%;
    max-width: 290px;
    height: 130px;
    margin-inline: auto;
    border: 0;
    overflow: hidden;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-page .about-hero {
        min-height: 220px;
        padding: 36px 20px 32px;
    }

    .about-section {
        padding-top: 46px;
        padding-bottom: 58px;
    }

    .about-card {
        padding: 25px 21px;
    }

    .about-content {
        font-size: 1rem;
    }

    .about-content blockquote {
        padding: 18px 20px;
        font-size: 1.08rem;
    }

    .about-side {
        grid-template-columns: 1fr;
    }
}
