/* ========================
    CSS RESET & NORMALIZE
========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #ECDCD6;
  color: #304056;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* ========================
    VINTAGE RETRO PALETTE
========================= */
:root {
  --primary: #304056;
  --secondary: #D6B27D;
  --accent: #ECDCD6;
  --retro-red: #B5503A;
  --retro-green: #6A7F58;
  --retro-blue: #75A0B7;
  --retro-yellow: #FFE099;
  --retro-orange: #D98C50;
  --text: #232021;
  --white: #fff;
  --black: #222;
  --border: #C4B38A;
  --shadow: 0 2px 8px rgba(48,64,86,0.08);
  --radius: 16px;
}

/* ========================
    FONTS (ADD IN HEADER!)
========================= */
@import url('https://fonts.googleapis.com/css?family=Quicksand:700,500|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255,241,213,0.13);
}
h1 { font-size: 2.3rem; line-height: 1.14; margin-bottom: 20px; }
h2 { font-size: 1.65rem; line-height: 1.18; margin-bottom: 18px; }
h3 { font-size: 1.19rem; line-height: 1.2; margin-bottom: 10px; }

p, ul, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  font-size: 1rem;
}
p, ul {
  margin-bottom: 14px;
}

b, strong { font-weight: 700; }

/* ========================
    GLOBAL UTILITIES
========================= */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  max-width: 675px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  min-width: 275px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(181, 80, 58, 0.12), 0 1px 3px 0 rgba(48,64,86,0.07);
  border-color: var(--retro-red);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--retro-yellow);
  color: var(--black);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px rgba(48,64,86,0.10);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  color: var(--black);
  font-size: 1.06rem;
}
.testimonial-card span {
  margin-left: auto;
  font-size: 0.98rem;
  font-style: normal;
  color: var(--primary);
  font-weight: 500;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--secondary);
  border-radius: 32px;
  font-size: 1.08rem;
  font-weight: bold;
  color: var(--primary);
  margin-top: 12px;
  box-shadow: var(--shadow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features {
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
}

/* ========================
    RETRO VISUALS
========================= */
section {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: repeating-linear-gradient(-45deg, #FFE099 0 10px, #ECDCD6 10px 20px);
  border-bottom: 5px dotted var(--border);
  box-shadow: 0 8px 24px rgba(181, 80, 58, 0.08);
  margin-bottom: 0;
}
.hero h1 {
  color: var(--retro-red);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 var(--retro-yellow);
}
.features h2, .about h2, .services h2 {
  color: var(--retro-orange);
  letter-spacing: 0.01em;
  font-family: 'Quicksand', Arial, sans-serif;
}
.features img, .about img, .testimonial-card img {
  filter: sepia(0.22) saturate(1.15) contrast(1.08);
  border-radius: 8px;
}
.section, section {
  border: 2px solid var(--secondary);
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

/* Vintage Divider Pattern */
.section:after {
  content: '';
  pointer-events: none;
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--secondary), var(--secondary) 20px, transparent 20px, transparent 40px);
  opacity: 0.13;
}

ul {
  list-style: disc inside;
  margin-left: 15px;
}

.benefits-list, .expertise-highlights ul {
  list-style: square inside;
  font-size: 1rem;
  color: var(--retro-green);
}

/* ============================
    HEADER + NAVIGATION BAR
============================= */
header {
  display: flex;
  align-items: center;
  padding: 18px 0;
  background: var(--primary);
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 3px 16px rgba(48,64,86,0.08);
}
.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 3px rgba(48,64,86,0.14));
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Quicksand', Arial, sans-serif;
}
.main-nav a {
  color: var(--accent);
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
  position: relative;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}
.main-nav .cta-primary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 3px 0 rgba(181, 80, 58, 0.06);
  padding: 10px 24px;
  margin-left: 14px;
  transition: background 0.2s, color 0.14s, box-shadow 0.15s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--retro-orange);
  color: var(--accent);
  box-shadow: 0 2px 10px 0 rgba(181, 80, 58, 0.14);
}

/* ==========================
   MOBILE NAVIGATION
===========================*/
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--white);
  border: none;
  border-radius: 9px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  box-shadow: 0 1px 6px rgba(48,64,86,0.10);
  transition: background 0.18s, color 0.10s;
  position: relative;
  z-index: 80;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-red);
  color: var(--retro-yellow);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.86,0.08,0.33,1);
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 2.1rem;
  padding: 18px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2002;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
}
.mobile-nav a {
  width: 90vw;
  max-width: 350px;
  text-align: center;
  font-family: 'Quicksand', Arial, sans-serif;
  color: var(--accent);
  background: var(--primary);
  padding: 18px;
  border-radius: 18px;
  font-size: 1.18rem;
  font-weight: 600;
  transition: background 0.22s, color 0.18s;
  margin-bottom: 2px;
  box-shadow: 0 2px 10px 0 rgba(181, 80, 58, 0.05);
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}

/* Ensure the overlay covers and disables background scroll */
body.menu-open {
  overflow: hidden;
}

/* ==========================
      CTA STYLES
=========================== */
.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 13px 33px;
  font-size: 1.12rem;
  font-family: 'Quicksand', Arial, sans-serif;
  border-radius: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.22s, box-shadow 0.18s, border 0.13s;
  border: none;
  margin-top: 12px;
  box-shadow: 0 1px 6px rgba(48,64,86,0.06);
}
.cta-primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-green);
  color: var(--white);
  border-color: var(--retro-green);
  box-shadow: 0 4px 14px rgba(106, 127, 88, 0.13);
}
.cta-secondary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--retro-red);
  color: var(--accent);
  border-color: var(--retro-red);
  box-shadow: 0 4px 14px rgba(181, 80, 58, 0.13);
}

/* ==========================
    FORM ELEMENTS
=========================== */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 9px 12px;
  background: #fff;
  color: var(--primary);
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--retro-orange);
}
button {
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
  border: none;
  border-radius: 9px;
}
button:hover, button:focus {
  background: var(--retro-green);
  color: var(--accent);
}

/* ==========================
     TABLES
=========================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--retro-yellow);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(48,64,86,0.05);
  font-size: 1.04rem;
}
table th, table td {
  padding: 14px 16px;
  text-align: left;
}
table thead th {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
}
table tbody tr:nth-child(even) {
  background: #F9F4EA;
}
table tbody tr:nth-child(odd) {
  background: #FFF9E7;
}
table tr {
  border-bottom: 1.5px dashed var(--border);
}
table tr:last-child { border-bottom: none; }

/* ==========================
   FOOTER
=========================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 16px 0;
  font-size: 1rem;
  width: 100%;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.16s;
  margin-bottom: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-yellow);
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-brand img {
  height: 46px;
  filter: sepia(0.22) saturate(1.15) contrast(1.08) drop-shadow(0 2px 3px rgba(48,64,86,0.16));
}
.footer-contact {
  color: var(--accent);
  text-align: center;
  font-size: 0.97rem;
  margin-top: 6px;
}
.footer-contact img {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  top: 4px;
  height: 18px;
  width: 18px;
  vertical-align: baseline;
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.social-links img {
  height: 30px;
  filter: grayscale(0.28) sepia(0.22) brightness(1.03) contrast(0.93);
  transition: filter 0.18s;
  border-radius: 6px;
}
.social-links img:hover, .social-links img:focus {
  filter: sepia(1) brightness(1.18) contrast(1.15);
}
.footer-legal {
  text-align: center;
  font-size: 0.94rem;
  opacity: 0.79;
  margin-top: 12px;
}

/* =============================
   SPECIAL VINTAGE COMPONENTS
============================== */
.trust-signals, .certifications-awards, .certifications-skills {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.trust-signals span, .certifications-awards span { 
  color: var(--retro-red); 
  font-weight: 600; 
  font-size: 1rem; 
  font-style: italic;
}
.before-after-descriptions h3 { color: var(--retro-green); font-size: 1.09rem; margin-bottom: 5px; }
.next-steps-info ul {
  margin-top: 6px;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 1rem;
  list-style: disc inside;
}
.additional-services-info p { color: var(--retro-orange); font-size: 0.98rem; margin-top: 8px; }

/* TEAM PROFILES */
.team-member-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.team-member-profiles > div {
  flex: 1 1 230px;
  min-width: 200px;
  background: #fff9e7;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(212,178,125,0.07);
  padding: 22px 20px 15px 20px;
  margin-bottom: 20px;
}
.team-member-profiles h3 {
  color: var(--retro-red);
  margin-bottom: 4px;
  font-size: 1.12rem;
}
.team-member-profiles span {
  color: var(--retro-green);
  margin-top: 7px;
  display: block;
  font-size: 0.96rem;
}

/* ADDRESS DETAILS */
.address-details img, .phone-email img, .opening-hours img {
  margin-right: 7px;
  position: relative;
  top: 4px;
  height: 17px;
  width: 17px;
}
.address-details, .phone-email, .opening-hours {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-email {
  flex-direction: column;
  gap: 0;
}
.phone-email a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.14s;
}
.phone-email a:hover, .phone-email a:focus {
  color: var(--retro-red);
}

/* LEGAL SECTION */
.legal {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: 0 2px 10px rgba(212,178,125,0.11);
  margin-bottom: 60px;
  padding: 36px 20px;
}
.legal h1, .legal h2 {
  color: var(--retro-red);
}

/* =============================
   COOKIE CONSENT BANNER
============================== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: var(--retro-yellow);
  color: var(--primary);
  border-top: 4px solid var(--retro-red);
  box-shadow: 0 -2px 18px rgba(48,64,86,0.1);
  padding: 18px 5% 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.45,0.15,0.49,1);
}
#cookie-banner.hide {
  transform: translateY(180%);
  pointer-events: none;
}
#cookie-banner .cookie-text {
  flex: 1;
  min-width: 0;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
#cookie-banner button {
  font-family: 'Quicksand', Arial, sans-serif;
  padding: 10px 25px;
  border-radius: 32px;
  font-size: 1rem;
  border: none;
  font-weight: bold;
  box-shadow: 0 1px 8px rgba(212,178,125,0.10);
  transition: background 0.20s, color 0.15s;
  margin-right: 0;
}
#cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: var(--retro-green);
  color: var(--white);
}
#cookie-banner .reject {
  background: var(--white);
  color: var(--retro-red);
  border: 2px solid var(--retro-red);
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: var(--retro-red);
  color: var(--white); 
}
#cookie-banner .settings {
  background: var(--white);
  color: var(--retro-orange);
  border: 2px solid var(--retro-orange);
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: var(--retro-orange);
  color: var(--white);
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(48,64,86,0.38);
  z-index: 3500;
  animation: fadeIn 0.2s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--accent);
  border: 2px solid var(--secondary);
  border-radius: 18px;
  padding: 40px 28px 30px 28px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 4px 32px rgba(212,178,125,0.15);
  animation: popupIn 0.38s cubic-bezier(0.7,0.13,0.28,1);
}
.cookie-modal-content h2 {
  color: var(--retro-red);
  font-size: 1.32rem;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--retro-orange);
  margin-right: 4px;
}
.cookie-category .always-enabled {
  font-style: italic;
  color: var(--retro-green);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 24px;
  border-radius: 32px;
  border: none;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.13s, color 0.12s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--retro-red);
  color: var(--accent);
}
.cookie-modal-close {
  position: absolute;
  right: 28px;
  top: 14px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--retro-red);
}

@keyframes popupIn {
  from { transform: scale(0.92); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 991px) {
  header .main-nav {
    gap: 12px;
  }
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 6vw;
  }
  .section, section, .features, .legal {
    padding: 32px 6vw;
  }
  .team-member-profiles {
    gap: 14px;
  }
  .feature-grid {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .team-member-profiles {
    flex-direction: column;
    gap: 20px;
  }
  .section, section, .features, .legal {
    padding: 28px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav, .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-top: 0;
  }
}
@media (max-width: 620px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.14rem; }
  .container {
    padding: 0 3vw;
    max-width: 100vw;
  }
  .section, section, .features, .legal {
    padding: 15px 3vw;
    border-radius: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 13px 11px;
    font-size: 0.97rem;
  }
  .footer-contact {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .footer-legal { font-size: 0.87rem; }
  .social-links img { height: 24px; }
}
@media (max-width: 420px) {
  header, .footer-nav, .footer-contact, .social-links, .footer-legal, .footer-brand img {
    font-size: 0.92rem;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 12px;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    font-size: 0.96rem;
    padding: 14px 3vw;
  }
  #cookie-banner .cookie-actions {
    gap: 9px;
    flex-wrap: wrap;
  }
  .cookie-modal-content {
    padding: 18px 6px;
    min-width: 99vw;
  }
}
