:root {
    --color-accent: #f7ac00;
    --color-accent-dark: #f76c00;
    --color-dark: #111111;
    --color-text: #2f2f2f;
    --color-muted: #5b5b5b;
    --color-light: #f4f0e8;
    --color-white: #ffffff;
    --color-border: #ded8cb;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
    --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background: #ffffff;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, ul { margin-top: 0; }
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 14px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-dark);
    line-height: 1.2;
    font-weight: 800;
}
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.site-header {
    background: #fff;
}

.header-meta {
    padding: 0;
}

.header-meta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 0 14px;
    flex-wrap: wrap;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 255px;
    min-height: 34px;
    padding: 6px 18px;
    border-radius: 0 0 20px 20px;
    background: #ff7a00;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid #ececec;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
}
body {
    padding-top: 168px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0 20px;
}
.brand img { width: 160px; }
.site-nav ul {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
}
.site-nav a.is-active,
.site-nav a:hover {
    background: #ff7a00;
    color: #fff;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 42px;
    height: 42px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: var(--color-dark);
}

.hero { background: #fff; padding: 0 0 34px; }
.hero > .container { width: min(calc(100% - 8px), 1920px); }
.hero-slider {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 85vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.68) 100%);
    background: rgba(0, 0, 0, 0.55);
}
.hero-copy { position: absolute; inset: auto 0 0; padding: 34px 28px; color: var(--color-white); }
.hero-copy-centered {
    inset: 50% 0 auto;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 40px;
}
.hero-copy h1, .hero-copy h2 {
    color: var(--color-white);
    font-size: clamp(46px, 4vw, 62px);
    font-weight: 800;
    line-height: 1.18;
    max-width: 860px;
    margin: 0 auto 24px;
}
.hero-copy p {
    font-size: 17px;
    line-height: 1.85;
    max-width: 860px;
    margin: 0 auto;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
}
.hero-actions-centered {
    justify-content: center;
}

.hero-button {
    min-width: 346px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 2px;
    background: #ff7a00;
    border-color: #ffffff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}

.hero-button:hover {
    background: #ff8e24;
    border-color: #fff;
    color: #fff;
}

.hero-button-secondary {
    min-width: 148px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 2;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #ffffff;
}

.hero-home-slider {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}

.hero-home-slide {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 85vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 0;
    margin: 0;
}

.hero-home-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.hero-home-copy {
    z-index: 3;
}

.hero-home-dots {
    z-index: 4;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-weight: 700;
    border: 2px solid var(--color-accent);
    transition: 0.2s ease;
}
.button:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: var(--color-white); }
.button.button-outline { background: transparent; color: var(--color-white); border-color: rgba(255, 255, 255, 0.7); }
.button.button-outline:hover { background: var(--color-white); color: var(--color-dark); }

.section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
    font-size: 36px;
    line-height: 1.45;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}
.section-title p {
    max-width: 980px;
    margin: 0 auto;
    color: #000;
    font-size: 17px;
    line-height: 1.9;
}
.section-mini-icon {
    margin-bottom: 22px;
}
.section-mini-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin: 0 auto;
}
.section-mini-icon-neutral img {
    width: 42px;
    height: 42px;
    filter: grayscale(1);
    opacity: 0.7;
}

.promise-grid, .service-grid, .overview-grid, .stats-grid, .two-col, .contact-grid, .footer-grid {
    display: grid;
    gap: 24px;
}
.promise-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.promise-card, .service-card, .overview-card, .info-box, .contact-card, .legal-card, .content-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}
.promise-card { padding: 26px 20px; text-align: center; }
.promise-card img { width: 52px; height: 52px; object-fit: contain; margin: 0 auto 18px; }
.promise-card h3 { font-size: 28px; }
.promise-grid-flat {
    gap: 8px;
    align-items: start;
    margin-top: 56px;
}
.promise-card-flat {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 10px;
}
.promise-card-flat img {
    width: 82px;
    height: 82px;
    margin-bottom: 16px;
}
.promise-card-flat h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 12px;
}
.promise-card-flat p {
    font-size: 15px;
    line-height: 1.75;
    color: #000;
}
.section-followup {
    margin-top: 26px !important;
}
.section-followup p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}
.section-followup p:last-child {
    margin-top: 18px;
    font-weight: 800;
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}
.brand-strip img {
    max-height: 44px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.88;
}

.content-band { background: #f2ede3; }
.two-col { grid-template-columns: 1.08fr 0.92fr; align-items: start; }
.content-card { padding: 32px; }
.check-list, .bullet-list, .service-area-list { padding-left: 18px; }
.check-list li, .bullet-list li, .service-area-list li { margin-bottom: 10px; }
.hours-box {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8f4ea;
    border: 1px solid var(--color-border);
}
.area-more[hidden] { display: none; }
.text-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: var(--color-accent-dark);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { overflow: hidden; }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .service-body, .overview-card .overview-body, .contact-card, .legal-card { padding: 22px; }
.service-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: 980px;
    margin: 46px auto 0;
}
.service-card-home {
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    background: #fff;
}
.service-card-home img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: 20px auto 8px;
    filter: grayscale(1);
}
.service-card-home .service-body {
    padding: 0 30px 28px;
    text-align: center;
}
.service-card-home .service-body h3 {
    font-size: 22px;
    margin-bottom: 16px;
}
.service-card-home .service-body p {
    font-size: 16px;
    line-height: 1.9;
    color: #000;
}

.full-image { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft); }
.full-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.overview-card { overflow: hidden; }
.overview-card img { width: 84px; height: 84px; object-fit: contain; margin: 28px auto 0; }

.cta-banner {
    background: linear-gradient(135deg, #161616 0%, #323232 100%);
    color: var(--color-white);
    text-align: center;
    border-radius: 24px;
    padding: 50px 28px;
}
.cta-banner h2 { color: var(--color-white); }

.page-hero {
    padding: 120px 0 72px;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.6)), center / cover no-repeat;
    color: var(--color-white);
}
.page-hero h1, .page-hero p { color: var(--color-white); max-width: 760px; }
.page-hero h1 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.3;
}
.page-hero p {
    font-size: 18px;
    line-height: 1.9;
}

.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-box { padding: 24px; text-align: center; }
.info-box strong { display: block; font-size: 30px; color: var(--color-accent-dark); margin-bottom: 8px; }

.contact-grid { grid-template-columns: 0.95fr 1.05fr; }
.contact-card p:last-child, .legal-card p:last-child, .content-card p:last-child { margin-bottom: 0; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.contact-list li:last-child { border-bottom: 0; }

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; font-weight: 700; }
.field input, .field textarea {
    width: 100%;
    border: 1px solid #c9c2b4;
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    background: #fffefb;
}
.field textarea { min-height: 170px; resize: vertical; }
.field.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.field-help {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #5b5b5b;
}
.field-help code {
    background: #f4f0e8;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 13px;
}
.admin-help-intro {
    margin: -4px 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #5b5b5b;
}
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }

.alert { margin-bottom: 18px; padding: 14px 16px; border-radius: 14px; font-weight: 700; }
.alert-success { background: #eaf6e4; color: #275a17; }
.alert-error { background: #fde8e8; color: #8e2525; }

.legal-layout { display: grid; gap: 22px; }
.legal-card h2, .legal-card h3 { margin-top: 22px; }

.site-footer {
    margin-top: 0;
    background: #fff;
    color: #000;
}
.footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    padding: 54px 0 28px;
    align-items: start;
}
.footer-logo {
    width: 180px;
}
.site-footer h3 {
    color: #000;
    font-size: 24px;
    margin-bottom: 18px;
}
.site-footer p {
    font-size: 16px;
    line-height: 1.9;
    color: #000;
}
.site-footer a { color: #ff7a00; }
.footer-consent-link {
    border: 0;
    background: transparent;
    color: #ff7a00;
    font: inherit;
    padding: 0;
    cursor: pointer;
}
.footer-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ef4d37;
    color: #fff !important;
    font-size: 22px;
    font-weight: 700;
    margin-top: 18px;
}
.footer-bottom {
    background: #ff7a00;
    border-top: 0;
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 18px 0;
    font-size: 14px;
    color: #fff;
}

.consent-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 120;
}

.consent-banner-inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.96);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.consent-banner-copy strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.consent-banner-copy p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.consent-banner-copy a {
    color: #fff;
    text-decoration: underline;
}

.consent-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.consent-banner-actions .button {
    min-height: 46px;
    min-width: 180px;
    border-radius: 8px;
}

.consent-button-secondary {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.consent-button-muted {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.section-text-reasons {
    padding-top: 8px;
    background: #fff;
}

.text-reasons-wrap {
    max-width: 1290px;
}

.text-logo-block {
    margin-bottom: 24px;
    text-align: center;
}

.text-logo-block img {
    width: 260px;
    margin: 0 auto;
}

.text-contact-lines {
    margin-bottom: 18px;
    text-align: center;
}

.text-contact-lines p {
    margin-bottom: 6px;
    font-size: 18px;
}

.text-contact-lines a,
.text-copy-block a {
    color: #ff7a00;
    text-decoration: underline;
}

.text-copy-block {
    max-width: 1290px;
    margin: 0 auto 24px;
}

.text-copy-block p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 14px;
    color: #000;
}

.reasons-block h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.reasons-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 90px;
    max-width: 1320px;
}

.check-list-orange {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.check-list-orange li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.6;
}

.check-list-orange li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #ff7a00;
    font-size: 22px;
    font-weight: 700;
}

.hours-box-plain {
    margin-top: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.hours-box-plain p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #000;
}

.content-card-plain {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.subpage-section .content-card,
.subpage-section .contact-card,
.subpage-section .legal-card {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.subpage-section .full-image,
.subpage-section .full-image-soft {
    border-radius: 0;
    box-shadow: none;
}

.subpage-section h2 {
    font-size: 34px;
    line-height: 1.5;
}

.subpage-section p,
.subpage-section li {
    font-size: 16px;
    line-height: 1.95;
    color: #000;
}

.subpage-cta {
    padding-top: 0;
    padding-bottom: 0;
}

.full-image-soft {
    border-radius: 0;
    box-shadow: none;
}

.section-service-area,
.section-machine-copy,
.section-overview {
    background: #fff;
}

.section-machine-services {
    background: #fff;
    padding-top: 26px;
}

.service-area-layout,
.machine-copy-layout {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-area-layout h2,
.machine-copy-layout h2,
.section-overview h2 {
    font-size: 40px;
}

.machine-note p,
.service-area-layout p,
.machine-copy-layout p,
.overview-copy li {
    font-size: 16px;
    line-height: 1.9;
}

.machine-note {
    margin-top: 18px !important;
}

.machine-image-wrap {
    max-width: 1240px;
}

.overview-grid-home {
    margin-top: 26px;
}

.overview-card-home {
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.overview-card-home img {
    margin-top: 24px;
}

.overview-card-home .overview-body {
    text-align: center;
}

.overview-card-home .overview-body h3 {
    font-size: 24px;
}

.overview-card-home .overview-body p {
    font-size: 16px;
    line-height: 1.8;
}

.cta-banner-home {
    border-radius: 0;
    padding: 60px 28px;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.cta-banner-home .button {
    min-width: 250px;
    border-radius: 4px;
}

.section-closing-cta {
    padding-top: 0;
    padding-bottom: 0;
}

.cta-banner-home-icon {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    margin-bottom: 26px;
}

.cta-banner-person {
    position: absolute;
    right: 13%;
    bottom: 0;
    width: 210px;
    max-width: 24%;
    object-fit: contain;
}

.overview-feature {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
    background: #ff7a00;
}

.overview-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 630px;
    object-fit: cover;
    display: block;
}

.overview-feature-panel {
    padding: 54px 56px;
    color: #fff;
}

.overview-feature-panel h2 {
    color: #fff;
    font-size: 34px;
    line-height: 1.45;
    margin-bottom: 26px;
    max-width: 520px;
}

.overview-feature-panel p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 26px;
    max-width: 540px;
}

.overview-feature-list {
    margin: 0;
    padding-left: 18px;
    color: #fff;
}

.overview-feature-list li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2;
}

.service-radius-map-block {
    margin-top: 28px;
}

.service-radius-map-text {
    margin: 0 0 18px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.service-radius-map {
    width: 100%;
    height: 530px;
    border: 1px solid #e3e3e3;
    overflow: hidden;
}

@media (max-width: 1080px) {
    .promise-grid, .service-grid, .overview-grid, .stats-grid, .contact-grid, .two-col, .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .brand-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .hero-slider, .hero-slide { min-height: 70vh; }
    .header-meta-inner {
        justify-content: center;
    }
    .hero-copy h1, .hero-copy h2 {
        font-size: 42px;
    }
    .service-area-layout,
    .machine-copy-layout {
        grid-template-columns: 1fr;
    }
    .overview-feature {
        grid-template-columns: 1fr;
    }
    .overview-feature-image img {
        min-height: 380px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-radius-map {
        height: 440px;
    }
}

@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: var(--color-white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: var(--shadow-soft);
    }
    .site-nav.is-open { display: block; }
    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px 20px;
        gap: 14px;
    }
    .header-meta-inner {
        padding-bottom: 10px;
        gap: 10px;
    }
    .meta-chip {
        min-width: 100%;
        border-radius: 0 0 14px 14px;
        font-size: 12px;
        text-align: center;
    }
    .promise-grid, .service-grid, .overview-grid, .stats-grid, .contact-grid, .two-col, .footer-grid, .form-row, .reasons-columns {
        grid-template-columns: 1fr;
    }
    .service-grid-home {
        grid-template-columns: 1fr;
    }
    .hero-slider, .hero-slide { min-height: 50vh; }
    .brand-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .brand img { width: 150px; }
    .nav-inner {
        padding-top: 10px;
    }
    .hero-copy-centered {
        padding: 0 18px;
    }
    .hero-copy h1, .hero-copy h2 {
        font-size: 28px;
        max-width: 640px;
    }
    .hero-copy p {
        font-size: 15px;
        line-height: 1.6;
    }
    .hero-button {
        min-width: 100%;
    }
    .cta-banner-person {
        position: static;
        width: 180px;
        max-width: 100%;
        margin-top: 24px;
        align-self: center;
    }
    .consent-banner-inner {
        grid-template-columns: 1fr;
        padding: 18px;
    }
    .consent-banner-actions {
        justify-content: stretch;
    }
    .consent-banner-actions .button {
        width: 100%;
        min-width: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section { padding: 56px 0; }
}
