:root {
  --navy: #001f3f;
  --navy-2: #062b54;
  --gold: #d89a2b;
  --gold-2: #f3bb4f;
  --text: #08203d;
  --muted: #53657b;
  --line: #e6edf4;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(0, 31, 63, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 94px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 7vw;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 152px; }
.main-nav {
  justify-self: center;
  display: flex;
  gap: 34px;
  font-weight: 800;
  font-size: 14px;
}
.main-nav a { position: relative; padding: 36px 0; }
.main-nav a:hover::after,
.main-nav a:focus::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}
.language-switcher {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.language-switcher button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #d9e2ec;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}
.language-switcher button.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,31,63,.22);
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy) 0%, #002a55 47%, #ffffff 47%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 42% 0 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.12), transparent 32%), linear-gradient(90deg, rgba(0,31,63,.98), rgba(0,31,63,.86));
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 630px;
  padding: 72px 6vw 60px 7vw;
  color: white;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: .98;
  letter-spacing: -0.04em;
}
.hero h1::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  background: var(--gold);
  margin: 24px 0;
  border-radius: 999px;
}
.hero-text {
  margin: 0 0 10px;
  color: rgba(255,255,255,.93);
  font-size: 18px;
  line-height: 1.65;
}
.hero-highlight {
  margin: 0;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #fff;
  box-shadow: 0 14px 30px rgba(216,154,43,.30);
}
.btn-primary:hover { filter: brightness(1.03); transform: translateY(-1px); }
.btn-secondary {
  border: 2px solid rgba(255,255,255,.72);
  color: #fff;
  text-transform: none;
}
.hero-visual {
  min-height: 430px;
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 54px 7vw;
  scroll-margin-top: 110px;
}
.section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.035em;
}
.section-heading span {
  display: block;
  width: 46px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 12px auto 0;
}
.section-heading.light h2 { color: #fff; }
.section-heading.align-left { text-align: left; }
.section-heading.align-left span { margin-left: 0; }

.services {
  background: #fff;
  padding-top: 48px;
}
.cards.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card {
  min-height: 186px;
  padding: 28px;
}
.icon, .benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 26px;
  margin-bottom: 18px;
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.why {
  background: linear-gradient(100deg, var(--navy), #00315f);
  color: white;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
}
.benefits article {
  padding: 10px 30px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.benefits article:last-child { border-right: 0; }
.benefit-icon {
  background: transparent;
  border: 2px solid var(--gold);
  width: 48px;
  height: 48px;
  font-size: 22px;
}
.benefits h3 {
  margin: 0 0 9px;
  font-size: 16px;
}
.benefits p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  font-size: 14px;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr .78fr 1.18fr;
  gap: 24px;
  align-items: start;
  background: #fff;
}
.about, .contact, .departments, .truck-card, .about-visual {
  background: #fff;
  border-radius: var(--radius);
}
.about { padding: 18px 0 10px; }
.about p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 84px;
}
.truck-card {
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.truck-card img {
  display: block;
  width: 100%;
  height: 225px;
  object-fit: cover;
}
.about-visual blockquote {
  margin: 0;
  padding: 18px 20px 18px 22px;
  border-left: 4px solid var(--gold);
  background: #f8fbff;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.55;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.address-card {
  padding: 22px;
  color: #fff;
  background: linear-gradient(140deg, var(--navy), #063462);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.address-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.address-card p {
  margin: 0 0 14px;
  line-height: 1.55;
}
.address-card .phone {
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 14px;
  font-weight: 900;
}
.departments {
  padding: 20px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.department-row {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  align-items: center;
}
.department-row:last-child { border-bottom: 0; }
.department-row span {
  font-weight: 800;
}
.department-row a {
  color: #0046b8;
  font-weight: 600;
}
.department-row a:hover { text-decoration: underline; }

.site-footer {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 7vw;
  background: var(--navy);
  color: rgba(255,255,255,.86);
}
.site-footer img { width: 150px; filter: brightness(1.07); }
.site-footer p { text-align: center; margin: 0; }
.site-footer div { display: flex; gap: 22px; }
.site-footer a:hover { color: #fff; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 170px 1fr; height: auto; padding: 14px 5vw; }
  .language-switcher { grid-column: 1 / -1; justify-content: center; }
  .brand img { width: 140px; }
  .hero { grid-template-columns: 1fr; background: var(--navy); }
  .hero::before { inset: 0; }
  .hero-visual { min-height: 280px; order: -1; opacity: .62; }
  .hero-copy { position: absolute; inset: 0; padding: 48px 5vw; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .benefits article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .about-contact-grid { grid-template-columns: 1fr 1fr; }
  .about-visual { padding-top: 0; }
  .departments { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 160px; }
  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .main-nav { flex-wrap: wrap; gap: 18px; font-size: 13px; }
  .main-nav a { padding: 0; }
  .hero { min-height: 620px; }
  .hero-copy { padding-top: 260px; }
  .hero h1 { font-size: 42px; }
  .hero-text, .hero-highlight { font-size: 16px; }
  .cards.four, .benefits, .about-contact-grid { grid-template-columns: 1fr; }
  .about-visual { padding-top: 0; }
  .section { padding: 42px 5vw; }
  .department-row { grid-template-columns: 1fr; gap: 4px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer div { flex-wrap: wrap; justify-content: center; }
}


/* Final compact presentation updates */
:root {
  --header-h: 82px;
}
html { scroll-padding-top: calc(var(--header-h) + 18px); }
.site-header {
  height: var(--header-h);
  grid-template-columns: 250px 1fr auto;
  padding: 0 6vw;
}
.brand {
  display: inline-flex;
  align-items: center;
  height: var(--header-h);
}
.brand img {
  width: auto;
  height: 68px;
  object-fit: contain;
}
.main-nav a { padding: 30px 0; }
.main-nav a:hover::after,
.main-nav a:focus::after { bottom: 18px; }
.language-switcher button { width: 42px; height: 42px; }

.hero {
  min-height: 445px;
  display: block;
  background: var(--navy);
}
.hero::before {
  inset: 0;
  width: 58%;
  background: linear-gradient(90deg, rgba(0,31,63,0.98) 0%, rgba(0,31,63,0.94) 58%, rgba(0,31,63,0.62) 82%, rgba(0,31,63,0) 100%);
  z-index: 1;
}
.hero-visual {
  position: absolute;
  inset: 0;
  min-height: 445px;
  z-index: 0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-copy {
  min-height: 445px;
  max-width: 620px;
  padding: 68px 0 52px 6vw;
}
.eyebrow { display: none; }
.hero h1 { font-size: clamp(46px, 4.4vw, 64px); }
.hero-text { max-width: 500px; font-size: 17px; }
.hero-highlight { font-size: 17px; }
.btn { min-height: 52px; padding: 0 28px; }

.section { padding: 34px 6vw; }
.services { padding-top: 28px; padding-bottom: 34px; }
.section-heading { margin-bottom: 22px; }
.section-heading h2 { font-size: clamp(26px, 2.2vw, 34px); }
.cards.four { max-width: 1260px; gap: 20px; }
.service-card { min-height: 160px; padding: 24px 24px; display: grid; grid-template-columns: 62px 1fr; column-gap: 18px; align-items: start; }
.service-card .icon { grid-row: 1 / 3; margin-bottom: 0; width: 52px; height: 52px; font-size: 24px; }
.service-card h3 { font-size: 20px; }
.service-card p { font-size: 14px; }

.why { padding-top: 30px; padding-bottom: 30px; }
.benefits article { padding: 8px 24px; }
.benefit-icon { width: 44px; height: 44px; margin-bottom: 12px; }
.benefits p { font-size: 13px; }

.about-contact-grid {
  grid-template-columns: 1.18fr .95fr .78fr 1.25fr;
  padding-top: 28px;
  padding-bottom: 26px;
}
.about { padding: 14px 0; }
.about-visual { padding-top: 72px; }
.truck-card img { height: 205px; }
.address-card { padding: 22px; }
.departments { padding: 18px 20px; }
.department-row { padding: 9px 0; }
.site-footer { padding: 18px 6vw; }
.site-footer img { width: 150px; height: auto; }

@media (max-width: 1180px) {
  :root { --header-h: auto; }
  .site-header { grid-template-columns: 170px 1fr; padding: 12px 5vw; }
  .brand, .brand img { height: 68px; }
  .language-switcher { grid-column: auto; }
  .hero { min-height: 560px; }
  .hero::before { width: 100%; background: linear-gradient(90deg, rgba(0,31,63,.98), rgba(0,31,63,.72)); }
  .hero-visual { min-height: 560px; opacity: .72; }
  .hero-copy { position: relative; min-height: 560px; padding: 72px 5vw; }
}
@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr; }
  .brand, .brand img { height: 64px; }
  .hero, .hero-visual, .hero-copy { min-height: 590px; }
  .hero-copy { padding: 74px 5vw 44px; }
  .hero h1 { font-size: 39px; }
  .service-card { grid-template-columns: 1fr; }
  .service-card .icon { grid-row: auto; margin-bottom: 16px; }
}

.legal-page {
  padding: 140px 24px 70px;
  background: #f5f8fc;
  min-height: 70vh;
}
.legal-card {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(5, 35, 70, 0.08);
  border-radius: 28px;
  padding: 46px;
  box-shadow: 0 20px 55px rgba(5, 35, 70, 0.08);
}
.legal-card h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #06213f;
}
.legal-card h2 {
  margin-top: 28px;
  color: #06213f;
  font-size: 1.25rem;
}
.legal-card p {
  color: #41516b;
  line-height: 1.75;
}
.legal-card a {
  color: #06345f;
  font-weight: 700;
}
.legal-note {
  margin-top: 34px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff8ea;
  border: 1px solid rgba(218, 155, 38, 0.35);
}
@media (max-width: 700px) {
  .legal-card { padding: 28px; border-radius: 20px; }
}

/* Updated language selector with flags */
.language-switcher button {
  width: auto;
  min-width: 58px;
  height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.language-switcher button:hover { transform: translateY(-1px); }
.language-switcher .flag { font-size: 15px; line-height: 1; }
.language-switcher button.active .flag { filter: saturate(1.1); }

/* Additional call-to-action section */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
  padding-top: 42px;
  padding-bottom: 42px;
}
.cta-strip h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.035em;
}
.cta-strip p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.55;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-strip .btn-secondary {
  border-color: rgba(255,255,255,.72);
}
.about p {
  line-height: 1.7;
}

@media (max-width: 980px) {
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions { justify-content: flex-start; }
  .language-switcher button { min-width: 54px; }
}

@media (max-width: 620px) {
  .language-switcher button {
    min-width: 48px;
    height: 40px;
    padding: 0 8px;
  }
  .language-switcher .flag { display: none; }
}


/* Compact language selector */
.language-switcher {
  gap: 6px;
}
.language-switcher button {
  min-width: 50px;
  height: 36px;
  padding: 0 8px;
  gap: 4px;
  font-size: 13px;
  border-radius: 999px;
}
.language-switcher .flag {
  font-size: 13px;
}
@media (max-width: 620px) {
  .language-switcher button {
    min-width: 46px;
    height: 36px;
    padding: 0 7px;
  }
  .language-switcher .flag { display: inline; }
}


/* Final About section refinement */
.about-contact-grid {
  align-items: start;
  padding-bottom: 12px;
}
.about p.about-emphasis {
  color: var(--navy);
  font-weight: 800;
}
.about-visual {
  padding-top: 48px;
  gap: 12px;
}
.truck-card img {
  height: 238px;
}
.about-visual blockquote {
  position: relative;
  margin-top: 0;
  padding: 18px 22px 18px 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 14px 35px rgba(5, 35, 66, .08);
}

@media (min-width: 1181px) {
  .about-contact-grid {
    grid-template-columns: 1.05fr 1.08fr .82fr 1.25fr;
    gap: 22px;
  }
}

@media (max-width: 1180px) {
  .about-visual {
    padding-top: 20px;
  }
  .truck-card img {
    height: 220px;
  }
}

@media (max-width: 980px) {
  .about-visual {
    padding-top: 0;
  }
}


/* Premium top information bar */
.top-info-bar {
  min-height: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 7px 6vw;
  background: #00182f;
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-contact-items,
.trust-indicators,
.top-socials {
  display: flex;
  align-items: center;
}
.top-contact-items { gap: 18px; white-space: nowrap; }
.top-contact-items a,
.top-address {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.top-contact-items a:hover { color: #fff; }
.top-icon,
.trust-icon { color: var(--gold-2); font-size: 12px; line-height: 1; }
.trust-indicators {
  justify-content: center;
  gap: 17px;
  min-width: 0;
}
.trust-indicators > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.top-socials { gap: 8px; justify-content: flex-end; }
.social-badge {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1360px) {
  .top-info-bar { gap: 15px; padding-left: 4vw; padding-right: 4vw; }
  .top-contact-items { gap: 12px; }
  .trust-indicators { gap: 11px; }
  .top-address { display: none; }
}

@media (max-width: 980px) {
  .top-info-bar {
    grid-template-columns: 1fr auto;
    min-height: 42px;
    padding: 7px 5vw;
  }
  .trust-indicators {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .trust-indicators::-webkit-scrollbar { display: none; }
  .top-contact-items { overflow: hidden; }
  .top-contact-items a { flex: 0 0 auto; }
}

@media (max-width: 620px) {
  .top-info-bar { display: flex; flex-wrap: wrap; gap: 7px 12px; padding: 7px 5vw; }
  .top-contact-items { width: calc(100% - 58px); gap: 10px; font-size: 10px; }
  .top-contact-items a:first-child span:last-child { display: none; }
  .top-socials { margin-left: auto; }
  .trust-indicators { width: 100%; font-size: 10px; gap: 14px; }
}

.footer-vat { display: inline-block; margin-top: 4px; font-size: 0.88em; opacity: 0.9; }


/* Cookie consent */
.cookie-modal-open { overflow: hidden; }
.cookie-consent { position: fixed; inset: 0; z-index: 10000; display: none; }
.cookie-consent.is-open { display: block; }
.cookie-backdrop { position: absolute; inset: 0; background: rgba(0,24,47,.52); }
.cookie-panel { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: min(920px, calc(100% - 32px)); max-height: calc(100vh - 48px); overflow: auto; background: #fff; color: #102d47; border-radius: 18px; box-shadow: 0 24px 70px rgba(0,24,47,.28); padding: 28px; border-top: 4px solid var(--gold); }
.cookie-panel h2 { margin: 0 42px 10px 0; font-size: clamp(22px, 3vw, 30px); color: #00182f; }
.cookie-panel p { margin: 0 0 10px; line-height: 1.65; }
.cookie-x { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #edf2f6; color: #00182f; font-size: 24px; cursor: pointer; }
.cookie-policy-link { display: inline-block; margin-bottom: 18px; color: #0b4f7c; text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-btn { min-height: 44px; border: 1px solid #0b4f7c; border-radius: 8px; padding: 10px 18px; background: #fff; color: #0b395e; font: inherit; font-weight: 700; cursor: pointer; }
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-primary { background: #0b395e; color: #fff; }
.cookie-settings { display: grid; gap: 2px; }
.cookie-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid #e4ebf0; }
.cookie-row strong, .cookie-row span { display: block; }
.cookie-row span { margin-top: 4px; color: #4c6274; font-size: 14px; line-height: 1.45; }
.cookie-switch { position: relative; width: 48px; height: 26px; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch span { position: absolute; inset: 0; margin: 0; background: #aebbc5; border-radius: 99px; cursor: pointer; transition: .2s; }
.cookie-switch span:before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.cookie-switch input:checked + span { background: #0b395e; }
.cookie-switch input:checked + span:before { transform: translateX(22px); }
.cookie-switch input:disabled + span { opacity: .65; cursor: not-allowed; }
.cookie-save { margin-top: 18px; justify-self: start; }
.cookie-footer-link { cursor: pointer; }
@media (max-width: 620px) { .cookie-panel { bottom: 10px; width: calc(100% - 20px); max-height: calc(100vh - 20px); padding: 22px 18px; border-radius: 14px; } .cookie-actions { display: grid; } .cookie-btn { width: 100%; } .cookie-save { width: 100%; } }
