    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --bg: #F7F4F0;
        --bg-soft: #EDE9E3;
        --bg-blue: #EFF4FB;
        --blue: #2563A8;
        --blue-mid: #3B7DD8;
        --blue-light: #BFCFE8;
        --text: #2A2420;
        --text-mid: #5A524A;
        --text-soft: #9A8F85;
        --white: #FFFFFF;
        --radius: 12px;
        --ease: .3s ease;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
    }

    /* ── WHATSAPP FLOAT ─────────────────────────────── */
    .wa-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 9999;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 99, 168, .35);
        text-decoration: none;
        transition: transform .2s, background .2s;
    }

    .wa-float:hover {
        transform: scale(1.08);
        background: var(--blue-mid);
    }

    .wa-float svg {
        width: 26px;
        height: 26px;
        fill: #fff;
    }

    /* ── NAV ────────────────────────────────────────── */
    nav {
        position: sticky;
        top: 0;
        z-index: 800;
        background: var(--bg);
        border-bottom: 1px solid var(--bg-soft);
        padding: 20px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        font-family: 'Lora', serif;
        font-size: 17px;
        font-weight: 700;
        color: var(--text);
        text-decoration: none;
    }

    .nav-logo span {
        color: var(--blue);
    }

    .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
    }

    .nav-links a {
        font-size: 14px;
        color: var(--text-mid);
        text-decoration: none;
        font-weight: 500;
        transition: color .2s;
        position: relative;
        padding-bottom: 3px;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1.5px;
        background: var(--blue);
        transform: scaleX(0);
        transition: transform .25s;
    }

    .nav-links a:hover {
        color: var(--blue);
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
    }

    .nav-cta {
        background: var(--blue);
        color: #fff;
        padding: 10px 22px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity .2s;
    }

    .nav-cta:hover {
        opacity: .85;
    }

    /* ── HERO ───────────────────────────────────────── */
    #hero {
        min-height: 88vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 60px 80px;
        gap: 60px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero-title {
        font-family: 'Lora', serif;
        font-size: clamp(36px, 4.5vw, 56px);
        font-weight: 700;
        line-height: 1.15;
        color: var(--text);
        margin-bottom: 22px;
    }

    .hero-title em {
        font-style: italic;
        color: var(--blue);
    }

    .hero-desc {
        font-size: 16px;
        color: var(--text-mid);
        line-height: 1.8;
        margin-bottom: 36px;
        font-weight: 300;
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-filled {
        background: var(--blue);
        color: #fff;
        padding: 14px 28px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity .2s, transform .2s;
    }

    .btn-filled:hover {
        opacity: .88;
        transform: translateY(-1px);
    }

    .btn-outline {
        background: transparent;
        color: var(--blue);
        border: 1.5px solid var(--blue-light);
        padding: 13px 24px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: border-color .2s, background .2s;
    }

    .btn-outline:hover {
        border-color: var(--blue);
        background: var(--bg-blue);
    }

    .btn-outline svg {
        width: 16px;
        height: 16px;
        fill: var(--blue);
    }

    .hero-img {
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 5/4;
        background: var(--bg-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 80px;
        position: relative;
    }

    .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-pill {
        position: absolute;
        bottom: 20px;
        left: 20px;

        background: #fff;
        border-radius: 10px;
        padding: 12px 16px;

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;

        box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
        width: fit-content;
        max-width: 280px;
    }

    .pill-icon {
        font-size: 18px;
        line-height: 1;
        flex-shrink: 0;
    }

    .pill-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .pill-content strong {
        display: block;
        margin: 0;

        font-size: 13px;
        font-weight: 600;
        color: var(--text);
        line-height: 1.3;
    }

    .pill-content span {
        display: block;
        margin: 0;

        font-size: 11px;
        color: var(--text-soft);
        line-height: 1.3;
    }

    /* ── MARQUEE ─────────────────────────────────────── */
    #marquee {
        background: transparent;
        padding: 18px 0;
        overflow: hidden;
        white-space: nowrap;
        border-top: 1px solid var(--bg-soft);
        border-bottom: 1px solid var(--bg-soft);
    }

    .marquee-track {
        display: inline-flex;
        gap: 0;
        animation: marqueeScroll 28s linear infinite;
    }

    #marquee:hover .marquee-track {
        animation-play-state: paused;
    }

    .marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .5px;
        color: var(--blue);
        text-transform: uppercase;
        padding: 0 32px;
    }

    .marquee-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--blue-light);
        flex-shrink: 0;
    }

    @keyframes marqueeScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* ── TRUST ──────────────────────────────────────── */
    #trust {
        background: var(--white);
        border-top: 1px solid var(--bg-soft);
        border-bottom: 1px solid var(--bg-soft);
        padding: 44px 60px;
    }

    .trust-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .trust-item {
        text-align: center;
    }

    .ti-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .ti-title {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-soft);
        font-weight: 600;
        margin-bottom: 5px;
    }

    .ti-desc {
        font-size: 13px;
        color: var(--text-mid);
        line-height: 1.5;
    }

    /* ── SHARED ─────────────────────────────────────── */
    .wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .lbl {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        font-weight: 600;
        margin-bottom: 12px;
    }

    .sh {
        font-family: 'Lora', serif;
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 700;
        color: var(--text);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .sp {
        font-size: 15px;
        color: var(--text-mid);
        line-height: 1.75;
        font-weight: 300;
    }

    /* ── SERVICII ───────────────────────────────────── */
    #servicii {
        padding: 100px 0;
    }

    .srv-header {
        text-align: center;
        max-width: 540px;
        margin: 0 auto 56px;
        padding: 0 24px;
    }

    .srv-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: start;
    }

    .srv-card {
        background: var(--white);
        border-radius: 50%;
        border: 1.5px solid var(--bg-soft);
        aspect-ratio: 1/1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 30px 28px;
        transition: var(--ease);
        cursor: default;
        position: relative;
        overflow: hidden;
    }

    .srv-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: var(--bg-blue);
        opacity: 0;
        transition: opacity .3s;
    }

    .srv-card:hover {
        border-color: var(--blue-light);
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(37, 99, 168, .12);
    }

    .srv-card:hover::before {
        opacity: 1;
    }

    .srv-card>* {
        position: relative;
        z-index: 1;
    }

    .srv-icon {
        width: 60px;
        height: 60px;
        background: var(--bg-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 18px;
        transition: background .3s;
    }

    .srv-card:hover .srv-icon {
        background: var(--blue-light);
    }

    .srv-title {
        font-family: 'Lora', serif;
        font-size: 19px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .srv-desc {
        font-size: 14px;
        color: var(--text-mid);
        line-height: 1.6;
    }

    /* ── DESPRE ─────────────────────────────────────── */
    #despre {
        padding: 100px 0;
        background: var(--white);
    }

    .despre-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .despre-img-wrap {
        position: relative;
    }

    .despre-img {
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: var(--bg-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 80px;
    }

    .despre-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .despre-float {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--blue);
        color: #fff;
        border-radius: 14px;
        padding: 16px 22px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(37, 99, 168, .3);
    }

    .despre-float strong {
        display: block;
        font-family: 'Lora', serif;
        font-size: 24px;
    }

    .despre-float span {
        font-size: 12px;
        color: var(--blue-light);
    }

    .despre-p {
        font-size: 15px;
        color: var(--text-mid);
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 14px;
    }

    .dvals {
        margin-top: 26px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .dval {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .dval-ico {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        background: var(--bg-blue);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .dval p {
        font-size: 14px;
        color: var(--text-mid);
        line-height: 1.65;
    }

    .dval strong {
        color: var(--text);
        font-weight: 600;
    }

    /* ── TESTIMONIALE ───────────────────────────────── */
    #testimoniale {
        padding: 100px 0;
    }

    .test-header {
        text-align: center;
        max-width: 500px;
        margin: 0 auto 52px;
        padding: 0 24px;
    }

    .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .test-card {
        background: var(--white);
        border-radius: 24px;
        padding: 28px;
        border: 1px solid var(--bg-soft);
        transition: var(--ease);
        display: flex;
        flex-direction: column;
    }

    .test-card:nth-child(3n+1) {
        background: var(--bg-blue);
        border-color: #DCE7F5;
    }

    .test-card:nth-child(3n+2) {
        background: var(--white);
    }

    .test-card:nth-child(3n) {
        background: #FBF8F4;
    }

    .test-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(37, 99, 168, .08);
    }

    .test-stars {
        color: #C9A84C;
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .test-txt {
        font-size: 14px;
        color: var(--text-mid);
        line-height: 1.75;
        margin-bottom: 24px;
        font-style: italic;
        font-weight: 300;
    }

    .test-auth {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: auto;
    }

    .test-av {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--blue);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .test-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
    }

    .test-sub {
        font-size: 11px;
        color: var(--text-soft);
    }

    .g-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .g-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--white);
        border: 1px solid var(--bg-soft);
        border-radius: 10px;
        padding: 12px 18px;
    }

    .g-letter {
        font-size: 22px;
        font-weight: 900;
        font-family: 'Lora', serif;
        background: linear-gradient(135deg, #4285F4 0%, #34A853 40%, #FBBC05 70%, #EA4335 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .g-badge-txt strong {
        display: block;
        font-size: 17px;
    }

    .g-badge-txt span {
        font-size: 11px;
        color: var(--text-soft);
    }

    .g-link {
        background: var(--white);
        border: 1.5px solid var(--blue-light);
        color: var(--blue);
        font-size: 14px;
        font-weight: 600;
        padding: 12px 22px;
        border-radius: 8px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: var(--ease);
    }

    .g-link:hover {
        border-color: var(--blue);
        background: var(--bg-blue);
    }

    .g-link svg {
        width: 14px;
        height: 14px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 2;
    }

    /* ── GALERIE ─────────────────────────────────────── */
    #galerie {
        padding: 100px 0;
        background: var(--white);
    }

    .galerie-header {
        text-align: center;
        max-width: 500px;
        margin: 0 auto 52px;
        padding: 0 24px;
    }

    .galerie-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .gal-item {
        border-radius: 14px;
        overflow: hidden;
        background: var(--bg-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 52px;
        cursor: pointer;
        transition: transform .3s ease, box-shadow .3s ease;
        position: relative;
    }

    .gal-item:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
    }

    .gal-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gal-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1/1;
        background: #EDE0D4;
    }

    .gal-item:nth-child(2) {
        aspect-ratio: 1/1;
        background: #D9E8D4;
    }

    .gal-item:nth-child(3) {
        aspect-ratio: 1/1;
        background: #D4DDE8;
    }

    .gal-item:nth-child(4) {
        aspect-ratio: 1/1;
        background: #EAD9D9;
    }

    .gal-item:nth-child(5) {
        aspect-ratio: 1/1;
        background: #D9E4EA;
    }

    .gal-item:nth-child(6) {
        grid-column: span 2;
        aspect-ratio: 2/1;
        background: #E8E0D4;
        font-size: 64px;
    }

    .gal-item:nth-child(7) {
        aspect-ratio: 1/1;
        background: #D4E8E0;
    }

    .gal-item:nth-child(8) {
        aspect-ratio: 1/1;
        background: #E8D4E0;
    }

    .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9000;
        background: rgba(0, 0, 0, .85);
        align-items: center;
        justify-content: center;
    }

    .lightbox.open {
        display: flex;
    }

    .lightbox-img {
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 16px;
        overflow: hidden;
        background: var(--bg-soft);
        width: 600px;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 100px;
    }

    .lightbox-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lightbox-close {
        position: absolute;
        top: 24px;
        right: 28px;
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        background: none;
        border: none;
        line-height: 1;
        opacity: .7;
        transition: opacity .2s;
    }

    .lightbox-close:hover {
        opacity: 1;
    }

    /* ── CONTACT ────────────────────────────────────── */
    #contact {
        padding: 100px 0;
        background: var(--white);
    }

    .contact-header {
        text-align: center;
        max-width: 500px;
        margin: 0 auto 52px;
        padding: 0 24px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .c-title {
        font-family: 'Lora', serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .c-row {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 16px 0;
        border-bottom: 1px solid var(--bg-soft);
    }

    .c-row:last-child {
        border-bottom: none;
    }

    .c-ico {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        background: var(--bg-blue);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .c-body label {
        display: block;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-soft);
        margin-bottom: 3px;
    }

    .c-body a,
    .c-body span {
        font-size: 15px;
        color: var(--text);
        font-weight: 500;
        text-decoration: none;
    }

    .c-body a:hover {
        color: var(--blue);
    }

    .map-box {
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: var(--bg-soft);
        border: 1px solid var(--bg-soft);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .map-box .map-em {
        font-size: 40px;
    }

    .map-box h4 {
        font-family: 'Lora', serif;
        font-size: 16px;
        color: var(--text);
    }

    .map-box p {
        font-size: 13px;
        color: var(--text-soft);
    }

    .map-box a {
        margin-top: 4px;
        background: var(--blue);
        color: #fff;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity .2s;
    }

    .map-box a:hover {
        opacity: .85;
    }

    /* ── FOOTER ─────────────────────────────────────── */
    footer {
        background: var(--text);
        padding: 34px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
    }

    .f-logo {
        font-family: 'Lora', serif;
        font-size: 15px;
        color: #fff;
    }

    .f-logo span {
        display: block;
        margin-top: 3px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 300;
        color: rgba(255, 255, 255, .4);
    }

    footer p {
        font-size: 13px;
        color: rgba(255, 255, 255, .3);
    }

    .f-links {
        display: flex;
        gap: 20px;
    }

    .f-links a {
        font-size: 13px;
        color: rgba(255, 255, 255, .6);
        text-decoration: none;
        transition: color .2s;
    }

    .f-links a:hover {
        color: #fff;
    }

    /* cookie banner */
    #cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 9998;
        max-width: 420px;
        background: #fff;
        border: 1px solid var(--bg-soft);
        border-radius: 16px;
        padding: 22px 24px;
        box-shadow: 0 10px 40px rgba(15, 30, 50, .18);
        display: none;
        animation: cbUp .4s ease;
    }

    #cookie-banner.show {
        display: block;
    }

    @keyframes cbUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cb-title {
        font-family: 'Lora', serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 8px;
    }

    .cb-text {
        font-size: 13px;
        color: var(--text-mid);
        line-height: 1.6;
        margin-bottom: 16px;
        font-weight: 300;
    }

    .cb-text a {
        color: var(--blue);
    }

    .cb-btns {
        display: flex;
        gap: 10px;
    }

    .cb-btn {
        flex: 1;
        padding: 11px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: opacity .2s, background .2s;
        font-family: 'Inter', sans-serif;
    }

    .cb-accept {
        background: var(--blue);
        color: #fff;
    }

    .cb-accept:hover {
        opacity: .88;
    }

    .cb-reject {
        background: var(--bg-soft);
        color: var(--text-mid);
    }

    .cb-reject:hover {
        background: #E2DCD3;
    }

    @media (max-width:560px) {
        #cookie-banner {
            left: 14px;
            right: 14px;
            bottom: 14px;
            max-width: none;
        }
    }

    /* ── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 900px) {
        nav {
            padding: 16px 24px;
        }

        .nav-links {
            display: none;
        }

        #hero {
            grid-template-columns: 1fr;
            padding: 40px 24px 60px;
            min-height: auto;
        }

        .hero-img {
            display: none;
        }

        #trust {
            padding: 36px 24px;
        }

        .trust-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .wrap {
            padding: 0 24px;
        }

        .srv-layout {
            grid-template-columns: 1fr;
        }

        .srv-col:first-child {
            border-right: none;
            border-bottom: 1px solid var(--bg-soft);
        }

        .srv-col {
            padding: 32px 28px;
        }

        .srv-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .srv-card {
            border-radius: 20px;
            aspect-ratio: unset;
            padding: 24px 20px;
        }

        .srv-card::before {
            border-radius: 20px;
        }

        .despre-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .despre-float {
            right: 14px;
            bottom: -14px;
        }

        .test-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .galerie-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gal-item:nth-child(6) {
            grid-column: span 2;
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }

        footer {
            padding: 28px 24px;
        }
    }

    @media (max-width: 540px) {
        .trust-grid {
            grid-template-columns: 1fr;
        }

        .test-grid {
            grid-template-columns: 1fr;
        }
    }