.pa-about {
    overflow: hidden;
    color: #071a38;
    background: white;
}

.pa-hero {
    min-height: 530px;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.pa-hero-image,
.pa-hero-overlay {
    position: absolute;
    inset: 0;
}

.pa-hero-image {
    z-index: -3;
    background-position: center;
    background-size: cover;
}

.pa-hero-overlay {
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7,26,56,.96),
            rgba(7,52,66,.85),
            rgba(7,52,66,.48)
        );
}

.pa-hero-content {
    padding-top: 75px;
    padding-bottom: 75px;
}

.pa-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #087b70;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pa-label::before {
    width: 27px;
    height: 2px;
    content: "";
    background: currentColor;
}

.pa-label-light {
    color: #92e2d9;
}

.pa-hero h1 {
    max-width: 780px;
    margin: 18px 0;
    color: white;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.pa-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.75;
}

.pa-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pa-button {
    min-height: 49px;
    padding: 12px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.pa-button:hover {
    transform: translateY(-2px);
}

.pa-button-primary {
    color: white;
    background: #087b70;
    box-shadow: 0 12px 28px rgba(8,123,112,.23);
}

.pa-button-primary:hover {
    color: white;
    background: #055c54;
}

.pa-button-outline {
    color: white;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.28);
}

.pa-section {
    padding: 90px 0;
}

.pa-section-soft {
    background: #f3f8f7;
}

.pa-introduction {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 75px;
}

.pa-image-stack {
    position: relative;
}

.pa-main-image {
    width: 100%;
    min-height: 510px;
    display: block;
    object-fit: cover;
    border-radius: 21px;
    box-shadow: 0 25px 60px rgba(7,26,56,.15);
}

.pa-image-card {
    width: min(280px, 82%);
    padding: 20px;
    position: absolute;
    right: -25px;
    bottom: 30px;
    color: white;
    background: #087b70;
    border: 5px solid white;
    border-radius: 17px;
    box-shadow: 0 18px 35px rgba(7,26,56,.20);
}

.pa-image-card strong,
.pa-image-card span {
    display: block;
}

.pa-image-card strong {
    margin-bottom: 5px;
    font-size: 17px;
}

.pa-image-card span {
    color: rgba(255,255,255,.75);
    font-size: 12px;
    line-height: 1.5;
}

.pa-introduction-copy h2,
.pa-section-heading h2,
.pa-standards h2,
.pa-cta h2 {
    margin: 11px 0 18px;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.pa-introduction-copy > p {
    color: #64748b;
    line-height: 1.8;
}

.pa-highlights {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pa-highlights > div {
    padding: 17px;
    background: #f6f9f9;
    border: 1px solid #dce7e5;
    border-radius: 13px;
}

.pa-highlights strong,
.pa-highlights span {
    display: block;
}

.pa-highlights strong {
    margin-bottom: 5px;
    font-size: 14px;
}

.pa-highlights span {
    color: #6c7b8e;
    font-size: 12px;
    line-height: 1.5;
}

.pa-section-heading {
    max-width: 750px;
    margin: 0 auto 42px;
    text-align: center;
}

.pa-section-heading .pa-label {
    justify-content: center;
}

.pa-section-heading p {
    color: #64748b;
    line-height: 1.75;
}

.pa-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pa-purpose-card {
    padding: 28px;
    background: white;
    border: 1px solid #dce7e5;
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(7,26,56,.05);
}

.pa-purpose-card > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #087b70;
    background: #e7f5f3;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 900;
}

.pa-purpose-card h3 {
    margin: 21px 0 10px;
    font-size: 19px;
}

.pa-purpose-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.pa-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pa-value {
    padding: 23px;
    display: flex;
    gap: 17px;
    background: white;
    border: 1px solid #dce7e5;
    border-radius: 16px;
}

.pa-value-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: white;
    background: #087b70;
    border-radius: 13px;
    font-weight: 900;
}

.pa-value h3 {
    margin: 2px 0 7px;
    font-size: 17px;
}

.pa-value p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.pa-standards {
    padding: 85px 0;
    color: white;
    background: linear-gradient(135deg, #071a38, #075c55);
}

.pa-standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.pa-standards p {
    color: rgba(255,255,255,.72);
    line-height: 1.75;
}

.pa-standards-list {
    padding: 25px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
}

.pa-standards-list > div {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.pa-standards-list > div:last-child {
    border-bottom: 0;
}

.pa-standards-list span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #071a38;
    background: #90e0d7;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.pa-standards-list p {
    margin: 4px 0 0;
}

.pa-cta {
    padding: 39px 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: #f3f8f7;
    border: 1px solid #dce7e5;
    border-radius: 21px;
}

.pa-cta h2 {
    margin-bottom: 8px;
}

.pa-cta p {
    margin: 0;
    color: #64748b;
}

@media (max-width: 900px) {
    .pa-introduction,
    .pa-standards-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pa-image-stack {
        max-width: 650px;
    }

    .pa-purpose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .pa-section {
        padding: 65px 0;
    }

    .pa-hero {
        min-height: 500px;
    }

    .pa-hero-actions,
    .pa-button {
        width: 100%;
    }

    .pa-main-image {
        min-height: 390px;
    }

    .pa-image-card {
        right: 12px;
    }

    .pa-highlights,
    .pa-values-grid {
        grid-template-columns: 1fr;
    }

    .pa-cta {
        padding: 28px 23px;
        align-items: flex-start;
        flex-direction: column;
    }
}