
:root {
    --ink: #17241f;
    --muted: #6d7b75;
    --paper: #f5f2ea;
    --card: #fffdf8;
    --line: #dfe2da;
    --green: #246b4b;
    --green2: #0d5f34;
    --mint: #dff1e8;
    --gold: #e4ad59;
    --shadow: 0 22px 60px rgba(26,45,36,.12)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 8% 0,#e8f2e9 0,transparent 32%),radial-gradient(circle at 100% 100%,#f1dfc5 0,transparent 27%),var(--paper);
    color: var(--ink);
    font: 15px/1.5 Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif
}

button, input, select {
    font: inherit
}

.page {
    position: relative;
    max-width: 1180px;
    margin: auto;
    padding: 20px 0 25px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase
}

    .eyebrow:before {
        content: "";
        width: 24px;
        height: 2px;
        background: var(--gold)
    }

header {
    display: block;
    margin-bottom: 0;
    text-align: left
}

main header{
    margin-bottom:30px;
}

h1 {
    width: 100%;
    font-family: Georgia,serif;
    font-size: clamp(36px,5vw,58px);
    line-height: 1.02;
    letter-spacing: -.035em;
    margin: 8px 0 0;
    text-align: left;
    font-weight:bold;
}

header p {
    width: 100%;
    color: var(--muted);
    margin: 16px 0 5px;
    text-align: left
}

.calculator-mode-tabs {
    display: flex;
    gap: 8px;
    margin: -10px 0 22px;
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(38,72,55,.15)
}

    .calculator-mode-tabs a {
        display: inline-flex;
        align-items: center;
        padding: 10px 15px;
        border-radius: 10px 10px 0 0;
        color: var(--green2);
        font-size: 13px;
        font-weight: 750;
        text-decoration: none
    }

        .calculator-mode-tabs a:hover {
            background: rgba(13,95,52,.07)
        }

        .calculator-mode-tabs a.active {
            background: var(--green2);
            color: #fff
        }

.affordability-page header {
    margin-bottom: 20px
}

.affordability-page .calculator-mode-tabs {
    margin-top: 0
}

.affordability-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(330px,.82fr);
    background: var(--card);
    border: 1px solid rgba(38,72,55,.13);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.affordability-inputs {
    padding: 34px
}

.affordability-results {
    padding: 34px;
    background: var(--green2);
    color: #fff
}

    .affordability-results h2, .affordability-inputs h2 {
        font: 700 22px Georgia,serif;
        margin: 0 0 22px
    }

    .affordability-inputs .target-home-heading, .affordability-inputs .spaced-section-heading, .affordability-results .change-planner-heading, .affordability-results .spaced-result-heading {
        margin-top: 34px
    }

.affordability-total-label {
    color: #bcd8c9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.affordability-total {
    font: 700 clamp(40px,6vw,62px)/1 Georgia,serif;
    letter-spacing: -.04em;
    margin: 8px 0 6px
}

.affordability-total-note {
    color: #c8d9d0;
    margin-bottom: 28px
}

.affordability-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

    .affordability-summary div {
        padding: 14px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 12px
    }

    .affordability-summary span {
        display: block;
        color: #bcd8c9;
        font-size: 11px;
        margin-bottom: 5px
    }

    .affordability-summary strong {
        font-size: 16px
    }

.affordability-status {
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 11px;
    background: rgba(255,255,255,.1);
    color: #d7e5dd;
    font-size: 12px
}

    .affordability-status.warning {
        background: #fff1d5;
        color: #684916
    }

.affordability-footnote {
    color: var(--muted);
    font-size: 11px;
    margin: 16px 2px 0
}

.calculator {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr);
    border: 1px solid rgba(38,72,55,.13);
    border-radius: 25px;
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow)
}

.inputs {
    padding: 34px
}

.results {
    padding: 34px;
    background: var(--green2);
    color: white;
    position: relative;
    overflow: hidden
}

    .results:after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border: 55px solid rgba(255,255,255,.035);
        border-radius: 50%;
        right: -135px;
        top: -135px;
        pointer-events: none
    }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

    .section-head h2, .results h2 {
        margin: 0;
        font: 700 22px/1.2 Georgia,serif
    }

.reset {
    border: 0;
    background: transparent;
    color: var(--green);
    font-weight: 750;
    cursor: pointer;
    padding: 6px
}

    .reset:hover {
        text-decoration: underline
    }

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px 17px
}

.field label {
    display: block;
    color: #45544d;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 7px
}

.control {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: white;
    height: 49px;
    transition: .2s
}

    .control:focus-within {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(36,107,75,.1)
    }

    .control span {
        color: #7a877f;
        padding-left: 14px;
        font-weight: 650
    }

    .control input, .control select {
        width: 100%;
        height: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        padding: 0 13px;
        color: var(--ink);
        font-weight: 650;
        min-width: 0
    }

.suffix {
    padding: 0 13px !important;
    font-size: 13px
}

.down-row {
    display: grid;
    grid-template-columns: 1fr 82px;
    gap: 8px
}

.hint {
    color: #849089;
    font-size: 11px;
    margin-top: 5px
}

.divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 27px 0 23px
}

.extras {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    background: #edf5f0;
    border: 1px solid #d4e7dc;
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 24px
}

.policy-note {
    grid-column: 1/-1;
    color: #52665c;
    font-size: 11px;
    margin: -2px 2px 0
}

.check {
    display: flex !important;
    align-items: center;
    gap: 7px;
    font-weight: 600 !important;
    color: #607068 !important
}

    .check input {
        accent-color: var(--green)
    }

.result-top {
    position: relative;
    z-index: 1
}

.result-kicker {
    color: #bcd8c9;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .1em;
    margin-top: 28px
}

.total {
    font: 700 clamp(42px,6vw,63px)/1 Georgia,serif;
    letter-spacing: -.04em;
    margin: 8px 0 9px
}

    .total small {
        font: 500 17px Inter,sans-serif;
        letter-spacing: 0;
        color: #bcd8c9
    }

.loan-note {
    color: #c8d9d0
}

.breakdown {
    margin: 30px 0 27px;
    display: grid;
    gap: 15px
}

.row {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 11px;
    color: #d7e5dd
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.row strong {
    color: white;
    font-variant-numeric: tabular-nums
}

.bar {
    height: 9px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.12);
    display: flex;
    margin-bottom: 28px
}

    .bar span {
        height: 100%;
        min-width: 2px
    }

.summary {
    border-top: 1px solid rgba(255,255,255,.16);
    padding-top: 23px
}

    .summary h3 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: #bcd8c9;
        margin: 0 0 15px
    }

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px
}

.stat {
    border-left: 1px solid rgba(255,255,255,.16);
    padding-left: 12px
}

    .stat:first-child {
        border: 0;
        padding-left: 0
    }

    .stat span {
        display: block;
        color: #aecaBB;
        font-size: 11px;
        margin-bottom: 4px
    }

    .stat strong {
        font-size: 14px
    }

.disclaimer {
    color: #76837d;
    font-size: 11px;
    max-width: 750px;
    margin: 17px 3px 0
}

.visuals {
    margin-top: 24px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 18px
}

.viz, .schedule-card {
    background: var(--card);
    border: 1px solid rgba(38,72,55,.13);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 38px rgba(26,45,36,.07)
}

    .viz h2, .schedule-card h2 {
        font: 700 21px Georgia,serif;
        margin: 0
    }

.sub {
    color: var(--muted);
    font-size: 12px;
    margin: 5px 0 18px
}

.donut-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 215px
}

.donut {
    width: 165px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(var(--green) 0 50%,var(--gold) 50%)
}

    .donut:after {
        content: "";
        position: absolute;
        inset: 28px;
        background: var(--card);
        border-radius: 50%
    }

.legend {
    display: grid;
    gap: 16px
}

    .legend div {
        display: grid;
        grid-template-columns: 10px auto;
        gap: 2px 9px
    }

    .legend i {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        margin-top: 5px
    }

    .legend span {
        color: var(--muted);
        font-size: 12px
    }

    .legend strong {
        grid-column: 2
    }

.chart-box {
    height: 215px
}

    .chart-box svg {
        width: 100%;
        height: 100%;
        overflow: visible
    }

    .chart-box text {
        font: 10px Inter,sans-serif;
        fill: #7b8982
    }

.gridline {
    stroke: #e4e5df
}

.area {
    fill: url(#fade)
}

.line {
    fill: none;
    stroke: var(--green);
    stroke-width: 3
}

.schedule-card {
    margin-top: 18px
}

.table-wrap {
    overflow: auto;
    max-height: 430px;
    border: 1px solid var(--line);
    border-radius: 12px
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    font-variant-numeric: tabular-nums
}

th {
    position: sticky;
    top: 0;
    background: #eff3ee;
    color: #47564f;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 10px;
    text-align: right;
    padding: 12px;
    z-index: 1
}

    th:first-child, td:first-child {
        text-align: left
    }

td {
    text-align: right;
    padding: 12px;
    border-top: 1px solid var(--line);
    font-size: 13px
}

tbody tr:hover {
    background: #f8f6f0
}

.extra-savings {
    margin-top: 18px;
    padding: 28px;
    background: linear-gradient(135deg,#edf5f0,#fffdf8);
    border: 1px solid rgba(38,72,55,.16);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(26,45,36,.07)
}

.extra-savings-head h2 {
    font: 700 24px Georgia,serif;
    margin: 0
}

.extra-savings-head p {
    max-width: 720px;
    color: var(--muted);
    margin: 6px 0 22px
}

.extra-savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.savings-results {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 22px
}

    .savings-results div {
        padding: 16px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 13px
    }

    .savings-results span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        margin-bottom: 5px
    }

    .savings-results strong {
        font: 700 20px Georgia,serif;
        color: var(--green2)
    }

.comparison-chart {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px
}

.comparison-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px
}

.comparison-chart h3 {
    font: 700 18px Georgia,serif;
    margin: 0
}

.comparison-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 12px
}

    .comparison-legend span {
        display: flex;
        align-items: center;
        gap: 6px
    }

    .comparison-legend i {
        width: 18px;
        height: 3px;
        border-radius: 4px
    }

.standard-key {
    background: #9aa59f
}

.extra-key {
    background: var(--green2)
}

#overpaymentChart {
    display: block;
    width: 100%;
    height: 280px
}

    #overpaymentChart text {
        font: 11px Inter,sans-serif;
        fill: #7b8982
    }

.comparison-line {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round
}

.standard-line {
    stroke: #9aa59f;
    stroke-dasharray: 8 7
}

.extra-line {
    stroke: var(--green2)
}

.stress-test {
    margin-top: 18px;
    padding: 28px;
    background: var(--green2);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(26,45,36,.1)
}

.stress-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px
}

    .stress-head h2 {
        font: 700 24px Georgia,serif;
        margin: 0
    }

    .stress-head p {
        color: #c8d9d0;
        margin: 6px 0 22px
    }

    .stress-head > strong {
        flex: none;
        background: rgba(255,255,255,.14);
        padding: 8px 12px;
        border-radius: 10px;
        font-size: 18px
    }

.stress-slider-label {
    display: block;
    color: #d7e5dd;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px
}

.stress-slider {
    --stress-progress: 40%;
    width: 100%;
    height: 8px;
    margin: 0;
    appearance: none;
    border-radius: 10px;
    outline: 0;
    background: linear-gradient(90deg,var(--gold) 0 var(--stress-progress),rgba(255,255,255,.18) var(--stress-progress) 100%)
}

    .stress-slider::-webkit-slider-thumb {
        appearance: none;
        width: 22px;
        height: 22px;
        border: 4px solid #fff;
        border-radius: 50%;
        background: var(--gold);
        cursor: pointer;
        box-shadow: 0 3px 12px rgba(0,0,0,.25)
    }

    .stress-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
        border: 4px solid #fff;
        border-radius: 50%;
        background: var(--gold);
        cursor: pointer
    }

.stress-scale {
    display: flex;
    justify-content: space-between;
    color: #aecaBB;
    font-size: 10px;
    margin-top: 7px
}

.stress-results {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 22px
}

    .stress-results div {
        padding: 15px;
        background: rgba(255,255,255,.09);
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 12px
    }

    .stress-results span {
        display: block;
        color: #bcd8c9;
        font-size: 11px;
        margin-bottom: 5px
    }

    .stress-results strong {
        font: 700 18px Georgia,serif
    }

.stress-note {
    color: #aecaBB;
    font-size: 11px;
    margin: 15px 0 0
}

.term-comparison {
    margin-top: 18px;
    padding: 28px;
    background: var(--card);
    border: 1px solid rgba(38,72,55,.13);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(26,45,36,.07)
}

.term-comparison-head h2 {
    font: 700 24px Georgia,serif;
    margin: 0
}

.term-comparison-head p {
    color: var(--muted);
    margin: 6px 0 20px
}

.term-comparison-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 13px
}

.term-comparison-table {
    min-width: 760px
}

    .term-comparison-table th {
        position: static;
        text-align: center;
        padding: 13px;
        background: #eff3ee
    }

    .term-comparison-table tbody th {
        background: #f7f5ef;
        color: var(--green2);
        font-size: 13px
    }

    .term-comparison-table td {
        text-align: center;
        padding: 16px 12px
    }

        .term-comparison-table td strong {
            display: block;
            color: var(--green2);
            font: 700 17px Georgia,serif
        }

        .term-comparison-table td span {
            display: block;
            color: var(--muted);
            font-size: 10px
        }

        .term-comparison-table td small {
            display: block;
            color: #65736c;
            font-size: 10px;
            margin-top: 7px
        }

    .term-comparison-table .current-scenario {
        background: #e2eee7
    }

    .term-comparison-table .selected-scenario {
        background: #edf5f0;
        box-shadow: inset 0 0 0 2px var(--green2)
    }

.term-comparison-note {
    color: var(--muted);
    font-size: 11px;
    margin: 12px 2px 0
}

@media(max-width:800px) {
    .page {
        padding: 0 15px 45px
    }

    header {
        display: block
    }

        header p {
            margin-top: 16px
        }

    .calculator, .affordability-layout {
        grid-template-columns: 1fr
    }

    .inputs, .results, .affordability-inputs, .affordability-results {
        padding: 27px 22px
    }

    .grid {
        grid-template-columns: 1fr 1fr
    }

    .extras {
        grid-template-columns: 1fr
    }

    .results {
        min-height: 560px
    }

    .visuals {
        grid-template-columns: 1fr
    }

    .stress-results {
        grid-template-columns: 1fr 1fr
    }

    .eyebrow {
        padding-top: 60px;
    }
}

@media(max-width:520px) {
    h1 {
        font-size: 39px
    }

    header {
        padding-top: 116px
    }

    .country-switcher {
        left: 0;
        right: auto;
        top: 48px;
        width: 100%;
        max-width: 100%;
        justify-content: space-between
    }

        .country-switcher select {
            min-width: 0;
            max-width: calc(100% - 76px)
        }

    .grid, .extra-savings-grid, .savings-results, .stress-results {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr
    }

    .stat, .stat:first-child {
        border-left: 1px solid rgba(255,255,255,.16);
        padding: 3px 0 3px 12px
    }

    .total {
        font-size: 48px
    }

    .calculator {
        border-radius: 18px
    }

    .extra-savings, .stress-test, .term-comparison {
        padding: 22px
    }

    .stress-head {
        gap: 12px
    }

    .comparison-chart-head {
        align-items: flex-start;
        flex-direction: column
    }

    #overpaymentChart {
        height: 220px
    }
}


.country-switcher {
    position: absolute;
    right: 0;
    top: -10px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,253,248,.84);
    border: 1px solid rgba(38,72,55,.14);
    padding: 7px 8px 7px 12px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    z-index: 3
}

    .country-switcher label {
        color: var(--muted);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em
    }

    .country-switcher select {
        border: 0;
        background: transparent;
        color: var(--green2);
        font-weight: 750;
        outline: 0;
        padding: 4px 22px 4px 4px;
        cursor: pointer
    }

header {
    position: relative;
    padding-top: 0;
}

.profile > .field {
    grid-column: 1/-1
}

.language-tabs {
    position: absolute;
    left: 24px;
    top: 52px;
    display: flex;
    gap: 6px;
    margin: 0;
    z-index: 3
}

    .language-tabs a {
        border: 1px solid rgba(38,72,55,.2);
        border-radius: 999px;
        color: var(--green2);
        padding: 7px 14px;
        text-decoration: none;
        font-size: .86rem;
        font-weight: 700;
        transition: .2s ease
    }

        .language-tabs a:hover {
            background: rgba(36,107,75,.08)
        }

        .language-tabs a.active {
            background: var(--green2);
            color: #fff;
            border-color: var(--green2)
        }

@media(max-width:800px) {
    .language-tabs {
        left: 15px;
        top: 30px
    }
}

@media(max-width:520px) {
    header {
        padding-top: 0;
    }

    .country-switcher {
        left: 0;
        right: auto;
        top: 0;
        width: 100%;
        max-width: 100%;
        justify-content: space-between
    }

        .country-switcher select {
            min-width: 0;
            max-width: calc(100% - 76px)
        }

    .language-tabs {
        top: 83px
    }
}

@media(max-width:520px) {
    .calculator-mode-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

        .calculator-mode-tabs::-webkit-scrollbar {
            display: none
        }

        .calculator-mode-tabs a {
            flex: 0 0 auto;
            justify-content: center;
            text-align: center;
            white-space: nowrap;
            border-radius: 9px;
            padding: 7px 10px;
            font-size: 12px;
            scroll-snap-align: start
        }

    .affordability-page header {
        padding-top: 66px
    }

    .affordability-page .affordability-summary {
        grid-template-columns: 1fr
    }
}

.calculator-tabs-shell {
    display: contents
}

.calculator-tab-arrow {
    display: none
}

@media(max-width:520px) {
    .calculator-tabs-shell {
        display: grid;
        grid-template-columns: 24px minmax(0,1fr) 24px;
        align-items: center;
        gap: 3px;
        margin-bottom: 22px
    }

        .calculator-tabs-shell .calculator-mode-tabs {
            margin: 0;
            min-width: 0
        }

    .calculator-tab-arrow {
        display: grid;
        place-items: center;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: var(--card);
        color: var(--green2);
        font-size: 16px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 2px 7px rgba(26,45,36,.08)
    }

        .calculator-tab-arrow:disabled {
            opacity: .28;
            cursor: default
        }
}

.seo-content {
    margin-top: 34px;
    padding: clamp(28px,5vw,58px);
    background: var(--card);
    border: 1px solid rgba(38,72,55,.13);
    border-radius: 25px;
    box-shadow: var(--shadow);
    color: #45544d
}

    .seo-content section + section {
        margin-top: 42px
    }

    .seo-content h2 {
        margin: 0 0 16px;
        color: var(--green2);
        font: 700 clamp(25px,3vw,34px)/1.18 Georgia,serif
    }

    .seo-content h3 {
        margin: 0 0 10px;
        color: var(--green2);
        font: 700 20px/1.25 Georgia,serif
    }

    .seo-content p {
        max-width: 78ch;
        margin: 0 0 14px;
        line-height: 1.75
    }

    .seo-content a {
        color: var(--green2);
        font-weight: 700
    }

.seo-intro {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line)
}

.seo-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px
}

    .seo-columns div {
        padding: 22px;
        background: #f7f5ef;
        border: 1px solid var(--line);
        border-radius: 15px
    }

    .seo-columns p {
        margin: 0;
        font-size: 14px
    }

.seo-faq details {
    border-top: 1px solid var(--line);
    padding: 17px 0
}

    .seo-faq details:last-child {
        border-bottom: 1px solid var(--line)
    }

.seo-faq summary {
    color: var(--green2);
    font-weight: 800;
    cursor: pointer
}

.seo-faq details p {
    margin: 11px 0 0;
    font-size: 14px
}

@media(max-width:700px) {
    .seo-content {
        padding: 27px 22px
    }

    .seo-columns {
        grid-template-columns: 1fr
    }

    .seo-content section + section {
        margin-top: 34px
    }
}
