
:root{
  --bg:#fbfaf6;
  --surface:rgba(255,255,255,.94);
  --surface-strong:#ffffff;
  --ink:#29353a;
  --muted:#63746d;
  --brand:#789989;
  --brand-deep:#5d7a6c;
  --brand-soft:#edf4f0;
  --brand-blue:#9fbfc7;
  --brand-cream:#f4eadc;
  --line:#dde6df;
  --shadow:0 16px 38px rgba(92,120,103,.10);
  --radius:24px;
  --radius-sm:18px;
  --max:1140px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  line-height:1.58;
  background:
    radial-gradient(circle at top left, rgba(244,234,220,.55), transparent 30%),
    radial-gradient(circle at top right, rgba(159,191,199,.18), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #fbfaf6 100%);
  min-height:100vh;
  position:relative;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27260%27%20height%3D%27260%27%20viewBox%3D%270%200%20260%20260%27%3E%0A%20%20%3Cg%20fill%3D%27none%27%20stroke%3D%27%237f9f90%27%20stroke-width%3D%271.4%27%20opacity%3D%270.18%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%0A%20%20%20%20%3Cpath%20d%3D%27M36%2074c6-18%2028-28%2046-22%2013%204%2024%2014%2029%2027l6%2018H58c-10%200-17-9-14-19l-8-4z%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2778%27%20cy%3D%27116%27%20r%3D%2712%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27132%27%20cy%3D%27116%27%20r%3D%2712%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M92%2069h26m-7%200%2010-18%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M180%2068l4%209%2010%201-8%206%203%2010-9-5-8%205%202-10-8-6%2010-1z%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M176%20156c0-12%2010-22%2022-22%207%200%2013%203%2017%208%204-5%2010-8%2017-8%2012%200%2022%2010%2022%2022%200%2020-22%2035-39%2047-17-12-39-27-39-47z%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M40%20196c0-10%209-18%2020-18%207%200%2013%203%2017%208%203-5%209-8%2016-8%2011%200%2020%208%2020%2018s-7%2017-18%2017H59c-11%200-19-7-19-17z%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27138%27%20cy%3D%27194%27%20r%3D%2710%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M138%20178v32m-16-16h32%27/%3E%0A%20%20%3C/g%3E%0A%3C/svg%3E");
  background-repeat:repeat;
  background-size:220px 220px;
  opacity:.18;
  mix-blend-mode:multiply;
}
a{color:inherit}
img{max-width:100%;display:block}
.wrap{max-width:var(--max);margin:0 auto;padding:0 20px;position:relative;z-index:1}

header{
  position:sticky;top:0;z-index:30;
  background:rgba(255,253,249,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(221,230,223,.94);
}
.nav{
  min-height:78px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:20px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:800;color:var(--brand-deep);
  text-decoration:none;min-width:0;
}
.brand-logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 42px;
  display: block;
  transform: scale(1.15);
  transform-origin: center;
}
.brand-badge{
  width:42px;height:42px;border-radius:15px;
  display:grid;place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-blue));
  box-shadow:var(--shadow);
  font:800 15px/1 Nunito, Manrope, sans-serif;
  flex:0 0 42px;
}
.brand span:last-child{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nav-right{
  display:grid;
  grid-template-columns:minmax(0,1fr) 106px 148px 44px;
  align-items:center;
  justify-content:end;
  gap:12px;
  min-width:0;
}
.nav-links{display:flex;justify-content:flex-end;gap:18px;flex-wrap:nowrap;min-width:0}
.nav-links a{
  text-decoration:none;color:var(--muted);
  font-size:13px;font-weight:700;white-space:nowrap;letter-spacing:-.01em;
}
.nav-links a:hover{color:var(--brand-deep)}
.lang-select{
  width:106px;min-width:106px;min-height:42px;
  border:1px solid var(--line);border-radius:999px;
  background:rgba(255,255,255,.94);color:var(--brand-deep);
  padding:10px 12px;
  font:800 13px/1 Manrope, sans-serif;
  box-shadow:0 8px 20px rgba(92,120,103,.06);
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
}
.header-cta{width:148px;justify-self:end}
.cta{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:46px;padding:12px 18px;border-radius:999px;
  text-decoration:none;font-weight:800;letter-spacing:-.01em;
  transition:transform .18s ease, box-shadow .18s ease;
  border:1px solid transparent;
}
.cta:hover{transform:translateY(-1px)}
.cta-primary{background:linear-gradient(135deg,var(--brand),#7ea392);color:#fff;box-shadow:var(--shadow)}
.cta-secondary{background:rgba(255,255,255,.94);border-color:var(--line);color:var(--brand-deep)}
.cta-soft{background:linear-gradient(135deg,var(--brand-soft),#f7efe4);border-color:var(--line);color:var(--brand-deep)}

.menu-toggle{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);background:rgba(255,255,255,.94);
  color:var(--brand-deep);cursor:pointer;
  box-shadow:0 8px 20px rgba(92,120,103,.06);
  align-items:center;justify-content:center;
}
.menu-toggle svg{width:20px;height:20px;display:block}
.mobile-menu{display:none;padding:0 0 14px}
.mobile-menu.is-open{display:block}
.mobile-menu-panel{
  display:grid;gap:10px;padding:16px;
  border:1px solid var(--line);border-radius:20px;
  background:rgba(255,255,255,.97);box-shadow:var(--shadow);
}
.mobile-menu-panel a{text-decoration:none;color:var(--brand-deep);font-weight:800;padding:12px 14px;border-radius:14px;background:linear-gradient(135deg,var(--brand-soft),#f7efe4);border:1px solid var(--line)}
.mobile-menu-panel .cta{margin-top:2px}


.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

main{padding-bottom:34px}
section{padding:18px 0 28px}
.hero{padding:40px 0 26px}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);gap:24px;align-items:stretch}
.card{
  background:var(--surface);
  border:1px solid rgba(221,230,223,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute;inset:auto -40px -70px auto;
  width:180px;height:180px;border-radius:50%;
  /* background:radial-gradient(circle, rgba(244,234,220,.55), rgba(244,234,220,0)); */
  pointer-events:none;
}
.hero-copy{padding:34px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  background:linear-gradient(135deg,var(--brand-soft),#f6efe4);
  color:#597466;font-size:13px;font-weight:800;margin-bottom:16px;
}
h1,h2,h3,h4{font-family:Nunito, Manrope, sans-serif}
h1{margin:0 0 14px;font-size:clamp(2.3rem, 4.2vw, 3.6rem);line-height:1.03;color:var(--brand-deep);letter-spacing:-.03em;max-width:12ch}
.lead{font-size:18px;color:#44534b;margin:0 0 18px;max-width:60ch}

.feature-row{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;margin:20px 0 26px;
}
.feature-row-item{
  display:flex;align-items:flex-start;gap:12px;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.92);
  box-shadow:0 8px 20px rgba(92,120,103,.04);
}
.feature-row-icon{
  width:36px;height:36px;border-radius:12px;flex:0 0 36px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand-soft),#f7efe4);
  border:1px solid var(--line);
  color:var(--brand-deep);
}
.feature-row-copy strong{display:block;margin-bottom:3px;font-size:14px;color:var(--brand-deep)}
.feature-row-copy span{display:block;font-size:13px;color:#4f6258;line-height:1.35}

.cta-row{display:flex;flex-wrap:wrap;gap:12px}
.hero-side{padding:28px;display:grid;gap:14px;align-content:start}
.info-box{border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(250,248,243,.93));border-radius:18px;padding:18px}
.info-box h3{margin:0 0 8px;font-size:18px;color:var(--brand-deep)}
.info-box p{margin:0;color:#44534b}
.info-list{display:grid;gap:10px;margin-top:10px}
.info-item{display:flex;gap:10px;align-items:flex-start;color:#3c4c44}
.info-icon{width:24px;height:24px;border-radius:10px;background:linear-gradient(135deg,var(--brand-soft),#f7efe3);color:var(--brand-deep);display:grid;place-items:center;font-size:12px;font-weight:800;flex:0 0 24px}
.info-box.note{background:linear-gradient(180deg,#f3f8f4,#edf4f0)}

.section-head{margin-bottom:18px}
h2{margin:0 0 10px;font-size:clamp(1.95rem,3vw,2.6rem);letter-spacing:-.025em;color:var(--brand-deep)}
.section-intro{margin:0 0 22px;color:var(--muted);max-width:72ch}

.delivery-note{
  margin:0 0 18px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(135deg,var(--brand-soft),#f7efe4);
  color:var(--brand-deep);
  font-weight:800;
}
.price-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.price-card{padding:22px}
.price-card h3{margin:0 0 8px;color:var(--brand-deep);font-size:22px}
.item-note{margin:0 0 18px;color:var(--muted)}
.price-list{display:grid;gap:10px;margin:0 0 16px}
.price-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid var(--line)}
.price-row:last-child{border-bottom:none}
.price-row span:first-child{color:#495952}
.price-row strong{color:var(--brand-deep)}
.deposit-badge{display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;background:linear-gradient(135deg,var(--brand-soft),#f7efe4);color:var(--brand-deep);font-size:13px;font-weight:800}
.tiny{font-size:12px;color:#647488}

.extras-card{padding:22px;margin-top:18px}
.extras-head{margin-bottom:14px}
.extras-head h3{margin:0 0 6px;color:var(--brand-deep);font-size:22px}
.extras-head p{margin:0;color:var(--muted);max-width:72ch}
.extras-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.extra-service{
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  padding:16px 18px;border-radius:18px;border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,242,234,.96));
}
.extra-service h4{margin:0 0 6px;font-size:17px;color:var(--brand-deep)}
.extra-service p{margin:0;color:#4f6258;font-size:13px;line-height:1.45}
.extra-tag{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:32px;padding:7px 10px;border-radius:999px;white-space:nowrap;background:linear-gradient(135deg,var(--brand-soft),#f7efe4);color:var(--brand-deep);border:1px solid var(--line);font-size:12px;font-weight:800}
.extras-grid .extra-service:last-child:nth-child(odd){grid-column:1 / -1}

.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.feature-card,.trust-card{padding:22px}
.feature-card{background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,242,234,.96))}
.feature-card h3,.trust-card h3{margin:0 0 8px;color:var(--brand-deep);font-size:20px}
.feature-card p,.trust-card p{margin:0;color:#425466}

.steps{display:grid;gap:14px}
.step{display:grid;grid-template-columns:56px 1fr;gap:16px;padding:20px}
.step-num{width:56px;height:56px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(135deg,var(--brand),var(--brand-blue));color:#fff;font-weight:800;font-size:20px;box-shadow:var(--shadow)}
.step h3{margin:0 0 6px;color:var(--brand-deep)}
.step p{margin:0;color:#435466}

.trust-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.faq{display:grid;gap:12px}
details{background:rgba(255,255,255,.94);border:1px solid var(--line);border-radius:18px;padding:16px 18px;box-shadow:var(--shadow)}
summary{cursor:pointer;font-weight:800;color:var(--brand-deep)}
details p{margin:10px 0 0;color:#465767}

.form-shell{padding:0;overflow:hidden}
.form-wrap{padding:18px}
.form-embed{width:100%;min-height:760px;border:0;background:#fff;border-radius:18px}
.form-fallback{margin-top:12px;color:var(--muted)}

.contact-card{padding:28px;background:linear-gradient(135deg,#7f9f90 0%, #98bcc5 100%);color:#fff}
.contact-card h2{color:#fff}
.contact-grid{display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center}
.contact-boxes{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:18px}
.contact-box{background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.24);border-radius:16px;padding:16px}
.contact-box strong{display:block;margin-bottom:6px}

footer{padding:26px 0 42px;color:var(--muted);font-size:14px}
.footer-line{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.footer-links{display:flex;flex-wrap:wrap;gap:14px;margin-top:8px}
.footer-links a{text-decoration:none;color:var(--brand-deep);font-weight:700}

.gateway{display:grid;place-items:center;min-height:100vh;padding:28px 0}
.gateway-card{max-width:860px;padding:34px}
.gateway-card h1{max-width:none}
.lang-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:22px}
.lang-card{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 20px;border-radius:18px;text-decoration:none;border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,242,234,.96));font-weight:800;color:var(--brand-deep)}
.lang-card small{display:block;color:var(--muted);font-size:13px;font-weight:700;margin-top:4px}
.lang-card:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.gateway-note{margin-top:18px;color:var(--muted)}

@media (max-width: 1120px){
  .nav-right{grid-template-columns:minmax(0,1fr) 106px 136px 44px}
  .nav-links{gap:12px}
  .header-cta{width:136px}
}
@media (max-width: 1024px){
  .nav-right{grid-template-columns:106px 136px 44px}
  .nav-links{display:none}
  .menu-toggle{display:inline-flex}
  .hero-grid,.price-grid,.grid-3,.trust-grid,.contact-grid,.contact-boxes{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .wrap{padding:0 16px}
  .nav{min-height:auto;padding:12px 0;gap:12px}
  .nav-right{display:flex;align-items:center;justify-content:flex-end;gap:10px}
  .header-cta{display:none}
  .menu-toggle{display:inline-flex}
  .hero{padding:28px 0 18px}
  .hero-copy,.hero-side,.feature-card,.trust-card,.step,.contact-card{padding:20px}
  h1{max-width:none}
  .lead{font-size:16px}
  .feature-row,.extras-grid,.lang-grid{grid-template-columns:1fr}
  .cta-row .cta{flex:1 1 calc(50% - 6px)}
  .step{grid-template-columns:48px 1fr;gap:14px}
  .step-num{width:48px;height:48px;border-radius:14px;font-size:18px}
  .form-wrap{padding:14px}
  .form-embed{min-height:660px}
}
@media (max-width: 520px){
  .lang-select{width:94px;min-width:94px;padding-right:28px}
  .cta-row .cta{flex:1 1 100%}
  .gateway-card{padding:24px}
}


/* ===== Option C baby-themed background motifs (subtle, professional) ===== */
.hero{
  position:relative;
  overflow:hidden;
}
.hero::before,
.hero::after,
main::before,
main::after{
  content:"";
  position:absolute;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  pointer-events:none;
}

.hero::before{
  top:-26px;
  left:-22px;
  width:220px;
  height:220px;
  opacity:.12;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none'%3E%3Cpath d='M95 104c12-12 18-28 18-45 0-35-28-63-63-63S-13 24-13 59s28 63 63 63c17 0 33-6 45-18l30 30c4 4 10 4 14 0l8-8c4-4 4-10 0-14l-30-30Z' stroke='%238AA89A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M73 73c-10-10-25-10-35 0-10 10-10 25 0 35 10 10 25 10 35 0 10-10 10-25 0-35Z' stroke='%238AA89A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero::after{
  top:-36px;
  right:-28px;
  width:210px;
  height:280px;
  opacity:.12;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 280' fill='none'%3E%3Cpath d='M83 17c0-9 7-17 17-17s17 8 17 17v18h8c18 0 33 15 33 33v149c0 35-28 63-63 63S32 252 32 217V68c0-18 15-33 33-33h18V17Z' stroke='%239FBFC7' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M63 110h74M63 147h74M63 184h48' stroke='%239FBFC7' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
}

main{
  position:relative;
  isolation:isolate;
}
main > section{
  position:relative;
  z-index:1;
}
main::before{
  left:-30px;
  bottom:40px;
  width:200px;
  height:270px;
  opacity:.10;
  z-index:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 280' fill='none'%3E%3Cpath d='M83 17c0-9 7-17 17-17s17 8 17 17v18h8c18 0 33 15 33 33v149c0 35-28 63-63 63S32 252 32 217V68c0-18 15-33 33-33h18V17Z' stroke='%239FBFC7' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M63 110h74M63 147h74M63 184h48' stroke='%239FBFC7' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
}

main::after{
  /*right:-22px;*/
  bottom:42px;
  width:210px;
  height:210px;
  opacity:.10;
  z-index:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none'%3E%3Cpath d='M95 104c12-12 18-28 18-45 0-35-28-63-63-63S-13 24-13 59s28 63 63 63c17 0 33-6 45-18l30 30c4 4 10 4 14 0l8-8c4-4 4-10 0-14l-30-30Z' stroke='%238AA89A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M73 73c-10-10-25-10-35 0-10 10-10 25 0 35 10 10 25 10 35 0 10-10 10-25 0-35Z' stroke='%238AA89A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 900px){
  .hero::before{width:150px;height:150px;top:-18px;left:-18px}
  .hero::after{width:145px;height:195px;top:-24px;right:-16px}
  main::before{width:120px;height:165px;left:-18px;bottom:34px}
  main::after{width:130px;height:130px;right:-14px;bottom:34px}
}

@media (max-width: 640px){
  .hero::before{opacity:.10}
  .hero::after{opacity:.10}
  main::before{opacity:.08}
  main::after{opacity:.08}
}
header .wrap.nav{
  max-width: none;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.nav{
  grid-template-columns: auto minmax(0, 1fr);
}

.nav-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav-links{
  flex: 1 1 auto;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.brand{
  flex-shrink: 0;
}
@media (max-width: 1180px){
  .nav-links{
    display: none;
  }

  .menu-toggle{
    display: grid;
    place-items: center;
  }
}
.nav-links a{
  position: relative;
  padding: 9px 12px;
  border-radius: 14px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.nav-links a:hover{
  background: rgba(138, 168, 154, 0.14);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-links a:focus-visible{
  outline: 2px solid rgba(138, 168, 154, 0.45);
  outline-offset: 3px;
}
/*privacy notice banner*/
.privacy-notice{
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 44px rgba(92,120,103,.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.privacy-notice-text strong{
  color: var(--brand-deep);
  font-size: 15px;
}

.privacy-notice-text p{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-notice-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.privacy-link{
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

#privacyNoticeClose{
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  cursor: pointer;
}

@media (max-width: 720px){
  .privacy-notice{
    flex-direction: column;
    align-items: flex-start;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .privacy-notice-actions{
    width: 100%;
    justify-content: space-between;
  }
}