:root {
    --bg-deep: #07141c;
    --bg-mid: #0b2230;
    --bg-light: #123647;
    --text: #f4f7f9;
    --text-muted: #c9d5dc;
    --accent: #47d7ff;
    --accent-strong: #22b8e6;
    --accent-warm: #ffd54a;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Roboto", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(38, 166, 154, 0.18) 0%, transparent 35%),
        radial-gradient(circle at bottom right, rgba(33, 150, 243, 0.15) 0%, transparent 40%),
        linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 30%, var(--bg-light) 65%, #0d1f2d 100%);
    background-attachment: fixed;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--accent-warm);
    outline-offset: 4px;
}
/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 80px;
    padding: 14px clamp(18px, 4vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(7, 20, 28, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo {
    display: inline-flex;
    text-decoration: none;
}

.logo img {
    width: auto;
    max-height: 50px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 38px);
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav a:hover {
    color: #fff;
}

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

.lang-switch {
    display: flex;
    align-items: center;
    gap: 9px;
}

.lang-switch button {
    display: grid;
    place-items: center;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    opacity: 0.58;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.lang-switch button:hover,
.lang-switch button.active {
    border-color: rgba(255, 255, 255, 0.28);
    opacity: 1;
    transform: scale(1.08);
}

.lang-switch img {
    width: 25px;
    height: 25px;
}

/* Hamburger ukryty na komputerze */
.mobile-menu {
    display: none;
}

.hero {
    display: grid;
    place-items: center;
    min-height: min(720px, calc(100vh - 80px));
    padding: 100px 20px 110px;
    text-align: center;
}

.hero-content {
    width: min(960px, 100%);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.area-intro h2,
.contact-content h2 {
    margin: 0;
    line-height: 1.12;
    text-wrap: balance;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
}

.hero p {
    max-width: 820px;
    margin: 26px auto 0;
    color: var(--text-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
    color: #04131b;
    background: var(--accent);
}

.button-primary:hover {
    background: #75e3ff;
}

.button-secondary {
    border-color: var(--border);
    background: var(--surface);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: var(--surface-strong);
}

.business-areas {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0 110px;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 50px);
}

.section-heading p {
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.75;
}

.area-section {
    padding: clamp(26px, 5vw, 56px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.area-section + .area-section {
    margin-top: 34px;
}

.area-intro {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 850px;
    margin-bottom: 38px;
}

.area-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(71, 215, 255, 0.24);
    border-radius: 20px;
    color: var(--accent);
    background: rgba(71, 215, 255, 0.08);
    font-size: 28px;
}

.area-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.area-intro p {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
}

.brands-grid,
.construction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.brand-card,
.service-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    background: rgba(5, 17, 24, 0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-card:hover,
.service-card:hover {
    border-color: rgba(71, 215, 255, 0.32);
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
}

.brand-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.03);
}

.brand-image img {
    width: 100%;
}

.brand-content {
    padding: 25px;
}

.brand-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.brand-content h3 a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.brand-content h3 a:hover {
    color: var(--accent);
}

.brand-content h3 i {
    font-size: 13px;
}

.brand-content p,
.service-card p,
.about-me p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.construction-section {
    background:
        linear-gradient(145deg, rgba(255, 213, 74, 0.045), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
}

.construction-section .area-icon {
    border-color: rgba(255, 213, 74, 0.26);
    color: var(--accent-warm);
    background: rgba(255, 213, 74, 0.08);
}

.service-card {
    padding: 30px;
}

.service-card > i {
    margin-bottom: 22px;
    color: var(--accent-warm);
    font-size: 34px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
}

.contact {
    padding: 110px 20px;
    background: rgba(0, 0, 0, 0.16);
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 82px);
    align-items: center;
    width: min(1050px, 100%);
    margin: 0 auto;
}

.contact-photo {
    position: relative;
    padding: 14px;
}

.contact-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(71, 215, 255, 0.28);
    border-radius: 34% 66% 57% 43% / 43% 36% 64% 57%;
    background: rgba(71, 215, 255, 0.07);
    transform: rotate(-4deg);
}

.contact-photo img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.contact-content h2 {
    font-size: clamp(31px, 4vw, 48px);
}

.about-me {
    margin-top: 26px;
    padding: 24px;
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--surface);
}

.about-me h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.services-contact {
    width: min(560px, 100%);
    margin-top: 30px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(5, 17, 24, 0.42);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    text-align: left;
}

.services-contact strong {
    display: block;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 21px;
    line-height: 1.3;
}

.services-contact strong + br {
    display: none;
}

.services-contact i {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 10px 10px 0;
    border: 1px solid rgba(71, 215, 255, 0.22);
    border-radius: 10px;
    color: var(--accent);
    background: rgba(71, 215, 255, 0.08);
    vertical-align: middle;
}

.services-contact a {
    color: var(--text-muted);
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    overflow-wrap: anywhere;
    vertical-align: middle;
    transition: color 0.25s ease;
}

.services-contact a:hover {
    color: var(--accent);
}

footer {
    padding: 26px 20px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

footer p {
    margin: 0;
}

.heart {
    color: #e63946;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        gap: 18px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .contact-container {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 128px;
    }
    .site-header {
        position: sticky;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 68px;
        padding: 10px 14px;
    }

    /* Logo zawsze dokładnie na środku ekranu */
    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        transform: translate(-50%, -50%);
    }

    .logo img {
        width: auto;
        max-height: 40px;
    }

    /* Zwykłe menu desktopowe ukryte */
    .main-nav {
        display: none;
    }

    /* Hamburger po lewej */
    .mobile-menu {
        position: relative;
        z-index: 4;
        display: block;
        grid-column: 1;
        justify-self: start;
    }

    .mobile-menu__button {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.055);
        cursor: pointer;
        list-style: none;
    }

    .mobile-menu__button::-webkit-details-marker {
        display: none;
    }

    .mobile-menu__button::marker {
        display: none;
        content: "";
    }

    .mobile-menu__button span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: var(--text);
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .mobile-menu[open] .mobile-menu__button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu[open] .mobile-menu__button span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu[open] .mobile-menu__button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu__panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        display: grid;
        width: min(280px, calc(100vw - 28px));
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(7, 20, 28, 0.98);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-menu__panel a {
        padding: 14px 16px;
        border-radius: 10px;
        color: var(--text-muted);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition:
            color 0.25s ease,
            background 0.25s ease;
    }

    .mobile-menu__panel a:hover {
        color: var(--text);
        background: rgba(71, 215, 255, 0.09);
    }

    /* Flagi po prawej */
    .lang-switch {
        z-index: 4;
        grid-column: 3;
        justify-self: end;
        gap: 6px;
    }
    .hero {
        min-height: auto;
        padding: 80px 20px 95px;
    }

    .business-areas {
        width: min(100% - 28px, var(--container));
        padding-bottom: 80px;
    }

    .area-intro {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 18px;
    }

    .area-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        font-size: 23px;
    }

    .brands-grid,
    .construction-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 80px 20px;
    }

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

    .contact-photo {
        width: min(300px, 80vw);
        margin: 0 auto;
    }

    .contact-content {
        text-align: center;
    }

    .about-me {
        border-left: 0;
        border-top: 3px solid var(--accent);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        text-align: left;
    }

    .services-contact {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 35px;
    }

    .lang-switch img {
        width: 21px;
        height: 21px;
    }

    .hero {
        padding: 62px 18px 78px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .section-heading p,
    .area-intro p {
        font-size: 16px;
    }

    .area-section {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .area-intro {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .brand-content,
    .service-card {
        padding: 22px 19px;
    }

    .brand-content h3,
    .service-card h3 {
        font-size: 21px;
    }

    .contact {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-me {
        padding: 20px;
    }

    .services-contact {
        padding: 20px 16px;
        font-size: 15px;
    }

    .services-contact strong {
        font-size: 19px;
    }

    .services-contact i {
        width: 34px;
        height: 34px;
        margin-right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================
   COOKIE BANNER
========================= */
.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 1px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(71, 215, 255, 0.55),
        rgba(255, 255, 255, 0.12),
        rgba(255, 213, 74, 0.3)
    );
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    animation: cookie-banner-show 0.35s ease both;
}

.cookie-banner__content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 20px 22px;
    border-radius: 21px;
    background: rgba(7, 20, 28, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cookie-banner__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border: 1px solid rgba(71, 215, 255, 0.25);
    border-radius: 16px;
    color: var(--accent);
    background: rgba(71, 215, 255, 0.09);
    font-size: 23px;
}

.cookie-banner__text {
    min-width: 0;
}

.cookie-banner__text h2 {
    margin: 0 0 7px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.25;
}

.cookie-banner__text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner__text a {
    display: inline-block;
    margin-top: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    text-underline-offset: 4px;
    transition: color 0.25s ease;
}

.cookie-banner__text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner__button {
    min-height: 46px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #04131b;
    background: var(--accent);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.cookie-banner__button:hover {
    background: #75e3ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(71, 215, 255, 0.2);
}

.cookie-banner__button:active {
    transform: translateY(0);
}

.cookie-banner__button:focus-visible {
    outline: 3px solid var(--accent-warm);
    outline-offset: 4px;
}

@keyframes cookie-banner-show {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@media (max-width: 768px) {
    .cookie-banner {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
    }

    .cookie-banner__content {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px 16px;
        padding: 18px;
    }

    .cookie-banner__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 20px;
    }

    .cookie-banner__button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .cookie-banner__content {
        grid-template-columns: 1fr;
        padding: 16px;
        text-align: left;
    }

    .cookie-banner__icon {
        width: 42px;
        height: 42px;
    }

    .cookie-banner__text h2 {
        font-size: 18px;
    }

    .cookie-banner__text p,
    .cookie-banner__text a {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        animation: none;
    }
}
/* =========================
   POLITYKA PRYWATNOŚCI
========================= */
.privacy-body {
    min-height: 100vh;
}

.privacy-page {
    width: 100%;
    min-height: 100vh;
    padding: clamp(34px, 6vw, 82px) 20px;
}

.privacy-card {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 60px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(71, 215, 255, 0.08), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.privacy-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(30px, 5vw, 48px);
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.privacy-heading__icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(71, 215, 255, 0.28);
    border-radius: 21px;
    color: var(--accent);
    background: rgba(71, 215, 255, 0.09);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    font-size: 29px;
}

.privacy-heading h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    text-wrap: balance;
}

.privacy-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.privacy-section {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    background: rgba(5, 17, 24, 0.42);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.privacy-section:hover {
    border-color: rgba(71, 215, 255, 0.28);
    background: rgba(8, 27, 38, 0.62);
    transform: translateY(-3px);
}

.privacy-section__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(71, 215, 255, 0.22);
    border-radius: 15px;
    color: var(--accent);
    background: rgba(71, 215, 255, 0.08);
    font-size: 20px;
}

.privacy-section:nth-child(even) .privacy-section__icon {
    border-color: rgba(255, 213, 74, 0.22);
    color: var(--accent-warm);
    background: rgba(255, 213, 74, 0.07);
}

.privacy-section__content {
    min-width: 0;
}

.privacy-section h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.3;
}

.privacy-section p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.privacy-back {
    gap: 10px;
    margin-top: 36px;
}

.privacy-back i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.privacy-back:hover i {
    transform: translateX(-4px);
}

@media (max-width: 820px) {
    .privacy-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .privacy-page {
        padding: 16px 12px;
    }

    .privacy-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .privacy-heading {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 26px;
        padding-bottom: 22px;
    }

    .privacy-heading__icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 23px;
    }

    .privacy-section {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        padding: 19px 16px;
    }

    .privacy-section__icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 18px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy-back {
        width: 100%;
        margin-top: 28px;
    }
}

@media (max-width: 390px) {
    .privacy-section {
        grid-template-columns: 1fr;
    }
}