.info-page {
    background: #f7f6f4;
    color: #151515;
    min-height: 100vh;
    padding: 34px 0 72px;
}

.info-shell,
.info-hero {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

.info-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 24px;
    align-items: stretch;
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    box-shadow: 0 18px 48px rgba(20, 20, 20, .08);
}

.info-hero--image {
    color: #fff;
    background: #171717;
}

.info-hero__media {
    position: absolute;
    inset: 0;
}

.info-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, .78), rgba(10, 10, 10, .48) 48%, rgba(10, 10, 10, .18));
}

.info-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-hero__content {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 5vw, 58px);
    align-self: center;
}

.info-hero__content h1 {
    max-width: 780px;
    margin: 10px 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
}

.info-hero__content p {
    max-width: 760px;
    margin: 0;
    color: rgba(21, 21, 21, .72);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
}

.info-hero--image .info-hero__content p {
    color: rgba(255, 255, 255, .82);
}

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #2d43c7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.info-hero--image .info-eyebrow {
    color: #fff;
    opacity: .78;
}

.info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(20, 20, 20, .12);
    background: #fff;
    color: #151515;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.info-button:hover {
    color: #151515;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(20, 20, 20, .12);
}

.info-button--dark {
    background: #151515;
    color: #fff;
    border-color: #151515;
}

.info-button--dark:hover {
    color: #fff;
}

.info-hero__summary {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    align-content: center;
    padding: 28px;
    background: rgba(255, 255, 255, .65);
    border-left: 1px solid rgba(20, 20, 20, .08);
}

.info-hero__summary div,
.info-hero__summary a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    color: #151515;
    font-weight: 700;
    text-decoration: none;
}

.info-hero__summary i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f2ff;
    color: #2d43c7;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 26px 0 58px;
}

.info-stats div,
.info-card,
.info-note,
.map-panel,
.contact-form {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(20, 20, 20, .06);
}

.info-stats div {
    padding: 20px;
}

.info-stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1;
}

.info-stats span {
    color: rgba(21, 21, 21, .62);
}

.info-section-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.info-section-head h2,
.info-split h2,
.info-note h2,
.contact-form-layout h2,
.policy-content h2 {
    margin: 8px 0 12px;
}

.info-section-head p,
.info-split p,
.info-note p,
.contact-form-layout p,
.policy-content p,
.info-card p {
    color: rgba(21, 21, 21, .68);
    line-height: 1.65;
}

.info-grid {
    display: grid;
    gap: 18px;
}

.info-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.info-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.info-card {
    padding: 24px;
}

.info-card > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f0f2ff;
    color: #2d43c7;
}

.info-card h2,
.info-card h3 {
    margin: 0 0 12px;
}

.info-card--dark {
    background: #151515;
    color: #fff;
}

.info-card--dark p,
.info-card--dark .info-list li {
    color: rgba(255, 255, 255, .74);
}

.info-card--dark > i {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.info-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    color: rgba(21, 21, 21, .68);
    line-height: 1.5;
}

.info-list a {
    font-weight: 700;
    text-decoration: none;
    color: black;
}

.info-list a:hover {
    text-decoration: underline;
}

.info-band {
    margin: 58px 0;
    padding: 52px 0;
    background: #eceff8;
    border-block: 1px solid rgba(20, 20, 20, .06);
}

.info-split {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 34px;
    align-items: start;
}

.info-steps,
.info-checklist {
    display: grid;
    gap: 12px;
}

.info-steps div,
.info-checklist div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(20, 20, 20, .08);
}

.info-steps span,
.info-checklist i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #151515;
    color: #fff;
    font-weight: 800;
}

.info-steps p,
.info-checklist span {
    margin: 0;
    color: rgba(21, 21, 21, .75);
    line-height: 1.45;
}

.info-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
}

.info-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.contact-card p {
    min-height: 78px;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.map-panel {
    overflow: hidden;
}

.map-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
}

.map-panel__head h2 {
    margin: 0;
    font-size: 22px;
}

.map-panel__head a {
    font-weight: 700;
    text-decoration: none;
    color: black;
}

.map-panel iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
    gap: 32px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.contact-form label:not(.contact-policy) {
    display: grid;
    gap: 8px;
    margin: 0;
    color: #151515;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(20, 20, 20, .12);
    border-radius: 16px;
    padding: 13px 15px;
    background: #f8f8f7;
    color: #151515;
    font: inherit;
    outline: none;
    transition: .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2d43c7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 67, 199, .1);
}

.contact-policy {
    align-items: flex-start;
    margin: 0;
}

.contact-recaptcha {
    min-height: 78px;
}

.contact-submit {
    border: 0;
    width: fit-content;
}

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: .6;
    transform: none;
}

.contact-form__status {
    min-height: 22px;
    margin: 0;
    color: rgba(21, 21, 21, .64);
    font-weight: 700;
}

.contact-form__status--success {
    color: #167a3a;
}

.contact-form__status--error {
    color: #b3261e;
}

.policy-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.policy-toc {
    position: sticky;
    top: 118px;
    align-self: start;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    box-shadow: 0 14px 38px rgba(20, 20, 20, .06);
}

.policy-toc a {
    padding: 10px 12px;
    border-radius: 14px;
    color: rgba(21, 21, 21, .7);
    font-weight: 700;
    text-decoration: none;
}

.policy-toc a:hover {
    background: #f0f2ff;
    color: #2d43c7;
}

.policy-content {
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    box-shadow: 0 14px 38px rgba(20, 20, 20, .06);
}

.policy-content section + section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(20, 20, 20, .08);
}

.policy-content ul {
    display: grid;
    gap: 10px;
    margin: 14px 0;
    padding-left: 22px;
    color: rgba(21, 21, 21, .72);
    line-height: 1.6;
}

.policy-content a {
    color: #000000;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .info-hero,
    .info-split,
    .contact-form-layout,
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .info-hero__summary {
        border-left: 0;
        border-top: 1px solid rgba(20, 20, 20, .08);
    }

    .info-grid--four,
    .info-grid--three,
    .info-contact-grid,
    .maps-grid,
    .info-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-toc {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .info-page {
        padding-top: 18px;
    }

    .info-shell,
    .info-hero {
        width: min(100% - 20px, 1180px);
    }

    .info-hero {
        border-radius: 22px;
        min-height: auto;
    }

    .info-hero__content,
    .info-hero__summary,
    .policy-content {
        padding: 22px;
    }

    .info-hero__content h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .info-grid--four,
    .info-grid--three,
    .info-contact-grid,
    .maps-grid,
    .info-stats,
    .policy-toc {
        grid-template-columns: 1fr;
    }

    .info-band {
        margin: 38px 0;
        padding: 34px 0;
    }

    .info-note,
    .map-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-submit {
        width: 100%;
    }
}

#contact-policy{
    width: auto;
}