/* CSS RESET & BASELINE --------------------------------------------------- */
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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #22313F;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #E9EBF5;
  line-height: 1.6;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #175EBA;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3088ec;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  outline: none;
}

/* FONT IMPORTS ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* COLOR & BRANDING -------------------------------------------------------- */
:root {
  --color-primary: #175EBA;
  --color-primary-hover: #1371de;
  --color-secondary: #22313F;
  --color-accent: #E9EBF5;
  --color-fun1: #FFB945;
  --color-fun2: #43E0B4;
  --color-fun3: #FF6687;
  --color-fun4: #9D6FFF;
  --color-white: #ffffff;
  --color-light: #F7FAFF;
  --shadow-lg: 0 8px 24px rgba(23, 94, 186, 0.09);
  --shadow-md: 0 2px 8px rgba(23, 94, 186, 0.13);
  --radius: 20px;
}

/* TYPOGRAPHY -------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--color-secondary);
  font-weight: 900;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.08;
  color: var(--color-primary);
  text-shadow: 1px 3px 0 var(--color-fun1), 2px 5px 10px var(--color-accent);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-secondary);
}
strong {
  font-weight: 700;
}
.text-section ul {
  list-style: disc inside;
  margin-bottom: 8px;
  margin-left: 12px;
}
.text-section li {
  margin-bottom: 8px;
}

/* LAYOUT CONTAINERS ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px 26px;
  margin-bottom: 32px;
  position: relative;
}
.content-wrapper.text-section {
  background: var(--color-accent);
  box-shadow: none;
}

/* FLEX UTILITY CLASSES ---------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(67, 224, 180, 0.09);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 530px;
}
.feature-item {
  background: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 320px;
  transition: transform 0.15s, box-shadow 0.19s;
  border: 2px solid transparent;
  position: relative;
  overflow: visible;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1.5deg);
  border-color: var(--color-fun1);
  box-shadow: 0 8px 30px rgba(255,184,69,.11), var(--shadow-lg);
  z-index: 2;
}
.feature-item img {
  background: var(--color-fun2);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(23,94,186,.09);
  border: 2px solid var(--color-primary);
  transition: background 0.3s;
}
/* Feature grid for playful effect */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

/* HEADER & MAIN NAVIGATION ------------------------------------------------ */
header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.17s cubic-bezier(.79,.08,.63,.93);
}
.logo img:hover {
  transform: rotate(-7deg) scale(1.11);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--color-white);
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1rem;
  background: none;
  border-radius: 99px;
  padding: 9px 18px;
  transition: background .18s, color .18s, box-shadow .18s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-fun1);
  color: var(--color-secondary);
  box-shadow: 0 4px 20px 0 rgba(255, 184, 69, .10);
}

/* MOBILE NAVIGATION (BURGER MENU) ----------------------------------------- */
.mobile-menu-toggle {
  background: var(--color-fun1);
  color: var(--color-secondary);
  border: none;
  font-size: 2rem;
  border-radius: 14px;
  padding: 7px 18px 6px 18px;
  cursor: pointer;
  display: none;
  margin-left: 22px;
  transition: background 0.15s;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(255,184,69,.16);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-fun2);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-primary);
  box-shadow: 0 12px 64px rgba(23,94,186,.15);
  z-index: 1020;
  transform: translateX(-105vw);
  transition: transform .42s cubic-bezier(.86,-0.12,.72,1.11);
  display: flex;
  flex-direction: column;
  padding: 24px 6vw 0 6vw;
  gap: 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--color-fun1);
  background: none;
  border: none;
  font-size: 2.1rem;
  padding: 6px 18px 10px 10px;
  align-self: flex-end;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.13s;
  margin-bottom: 18px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun3);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--color-white);
  background: var(--color-primary);
  padding: 14px 10px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: none;
  transition: background 0.17s, box-shadow 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun2);
  color: var(--color-secondary);
  box-shadow: 0 2px 16px var(--color-fun2);
}

@media (max-width: 992px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* CTA BUTTONS ------------------------------------------------------------- */
.cta-button {
  background: linear-gradient(90deg, var(--color-fun1) 66%, var(--color-fun2));
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 99px;
  padding: 16px 40px;
  margin-top: 16px;
  box-shadow: 0 3px 14px var(--color-fun1), 0 1px 8px rgba(23,94,186,.08);
  border: none;
  letter-spacing: .07em;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s, color 0.15s, transform 0.18s, box-shadow 0.14s;
  text-align: center;
  text-shadow: 0 2px 12px var(--color-accent);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--color-fun2) 40%, var(--color-fun1) 90%);
  color: var(--color-secondary);
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
  box-shadow: 0 6px 32px var(--color-fun2), 0 4px 8px var(--color-primary);
  text-decoration: none;
}

/* TABLE STYLE (GDPR PAGE) ------------------------------------------------- */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 32px 0;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
thead {
  background: var(--color-primary);
}
th, td {
  text-align: left;
  padding: 16px 10px;
}
th {
  color: var(--color-white);
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
tbody tr:nth-child(even) {
  background: var(--color-accent);
}
tbody tr:nth-child(odd) {
  background: var(--color-light);
}

/* TESTIMONIALS & STAR ICONS ----------------------------------------------- */
.testimonial-card {
  background: #fff;
  color: var(--color-secondary);
  box-shadow: 0 3px 12px rgba(157,111,255,0.07), 0 1px 8px rgba(23,94,186,.06);
  border-left: 7px solid var(--color-fun4);
  position: relative;
  transition: box-shadow 0.23s;
}
.testimonial-card p {
  color: var(--color-secondary);
  font-size: 1.14rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--color-fun4);
  font-weight: bold;
  margin-top: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card div {
  display: flex;
  gap: 6px;
}
.testimonial-card img {
  width: 22px;
  height: 22px;
  display: inline-block;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(67, 224, 180, 0.18);
  z-index: 1;
}

/* FOOTER ------------------------------------------------------------------ */
footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 36px 0 20px 0;
  font-size: 1rem;
}
footer p {
  color: white;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-fun2);
  font-weight: 700;
  font-size: 1.04rem;
  text-decoration: underline dotted;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-fun1);
  text-decoration: underline dashed;
}
.footer-contact {
  text-align: center;
  font-size: 0.96rem;
  color: var(--color-accent);
  margin-top: 2px;
}

/* RESPONSIVE DESIGN ------------------------------------------------------ */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-item {
    min-width: 120px;
    max-width: 260px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-wrapper.text-section {
    padding: 17px 8px;
    margin-bottom: 18px;
  }
  .feature-grid, .content-grid {
    gap: 11px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.26rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  .feature-item {
    min-width: 90px;
    max-width: 99vw;
    padding: 14px 10px 13px 14px;
    font-size: 0.95rem;
  }
  .testimonial-card {
    padding: 12px 10px !important;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 99vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .section {
    padding: 21px 2vw;
    margin-bottom: 35px;
  }
  .feature-item {
    min-width: 99px;
    max-width: 92vw;
  }
}
@media (max-width: 576px) {
  .section {
    margin-bottom: 23px;
    padding: 13px 0px;
  }
  .feature-grid, .content-grid {
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
  }
  .footer-contact p {
    font-size: 0.86rem;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ANIMATED & PLAYFUL VISUALS ---------------------------------------------- */
.feature-item {
  /* Animated dot pattern for playful pop */
  box-shadow: var(--shadow-md), 0 0 0 6px rgba(255,184,69,0.05), 0 0 0 0 rgba(255,102,135,0);
  position: relative;
}
.feature-item::before {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-fun3);
  opacity: 0.22;
  z-index: 1;
  animation: bounce-dot 1.6s linear infinite alternate;
}
@keyframes bounce-dot {
  0% { top: 6px; opacity: .13; }
  45% { top: 9px; opacity: .18; }
  80% { top: 14px; opacity: .32; }
  100% { top: 23px; opacity: .22; }
}
/* Fun repeated border color bursts on hover */
.feature-item:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: -15px; top: -15px;
  width: 30px; height: 30px;
  border: 3px dashed var(--color-fun4);
  border-radius: 50%;
  opacity: 0.22;
  animation: burst 0.22s cubic-bezier(.8,.06,.97,1.17) 1;
  pointer-events: none;
  z-index: 0;
}
@keyframes burst {
  from { transform: scale(0.5); opacity: 0.13; }
  to { transform: scale(1.5); opacity: 0.22; }
}

/* ICONS INSIDE TEXT-LISTS & CARDS ----------------------------------------- */
ul li img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 9px;
  margin-bottom: 2px;
}
.card ul li, .content-wrapper.text-section ul li {
  padding-left: 0;
  margin-bottom: 7px;
}

/* SEPARATORS, HR ---------------------------------------------------------- */
hr {
  border: 0;
  border-top: 2px dashed var(--color-fun2);
  margin: 28px 0 18px 0;
}

/* COOKIE CONSENT BANNER & COOKIE MODAL ------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-fun1);
  color: var(--color-secondary);
  z-index: 2001;
  box-shadow: 0 -4px 24px 0px rgba(33,49,63,.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 7vw 22px 5vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  animation: fadeUpIn 0.8s cubic-bezier(.86,0,.42,1.21) 0s;
}
@keyframes fadeUpIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  padding: 11px 26px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: var(--color-fun2);
  color: var(--color-secondary);
  box-shadow: 0 3px 10px var(--color-fun2);
}
.cookie-btn.accept:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-btn.reject {
  background: var(--color-fun3);
  color: var(--color-white);
}
.cookie-btn.reject:hover {
  background: var(--color-fun1);
  color: var(--color-secondary);
}
.cookie-btn.settings {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px dashed var(--color-primary);
}
.cookie-btn.settings:hover {
  background: var(--color-accent);
}

/* COOKIE MODAL ------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,49,63,0.14);
  z-index: 2002;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.35s cubic-bezier(.63,.01,.48,.93);
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px 0 rgba(33,49,63,0.22);
  padding: 38px 30px 32px 30px;
  max-width: 370px;
  min-width: 224px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popIn 0.38s cubic-bezier(.58,.59,.43,1.23);
}
@keyframes popIn {
  from { transform: scale(0.85) translateY(38px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-modal-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: var(--color-accent);
  position: relative;
  transition: background .19s;
  margin-left: 12px;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch-label {
  display: block;
  width: 40px;
  height: 22px;
  cursor: pointer;
  position: relative;
}
.cookie-switch-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--color-fun2);
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: transform 0.16s cubic-bezier(.4,0,1,1);
}
.cookie-switch input[type="checkbox"]:checked + .cookie-switch-label::before {
  background: var(--color-fun3);
  transform: translateX(18px);
}
.cookie-switch[aria-disabled="true"] {
  background: #eee;
  opacity: 0.7;
}
.cookie-switch[aria-disabled="true"] .cookie-switch-label {
  cursor: not-allowed;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 12px;
  background: none;
  border: none;
  color: var(--color-fun3);
  font-size: 1.7rem;
  border-radius: 8px;
  cursor: pointer;
  padding: 1px 9px 0 9px;
  transition: background 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-fun1);
  color: var(--color-secondary);
}

@media(max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 19px 2vw 17px 3vw;
    font-size: 1rem;
  }
}
@media(max-width: 420px) {
  .cookie-btn {
    padding: 8px 14px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 100px;
    padding: 18px 6px 15px 6px;
  }
}

/* SCROLLBAR STYLING (FOR PLAYFUL TOUCHES) ------------------------------ */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 8px;
}

/* MICRO-INTERACTIONS & PLAYFUL ANIMATIONS ------------------------------- */
h1, h2, h3, h4 {
  transition: text-shadow .19s, color .13s;
}
h1:hover {
  color: var(--color-fun3);
  text-shadow: 3px 7px 1px var(--color-fun4), 1px 1px var(--color-accent);
}
h2:hover {
  color: var(--color-fun4);
}
.cta-button:active {
  transform: scale(0.97) rotate(2deg);
}
.feature-item:active {
  transform: scale(.99) rotate(-2deg);
}

/* MEDIA QUERIES FOR BETTER RESPONSIVE FLEX LAYOUTS --------------------- */
@media (max-width: 992px) {
  .feature-grid, .content-grid {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 160px;
  }
}

/* GENERAL SPACING ------------------------------------------------------ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container > *:not(:last-child),
.feature-grid > *:not(:last-child),
.content-grid > *:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* HIDE/SHOW LOGIC FOR JS ENABLED --------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

/* PRINT --------------------------------------------------------------- */
@media print {
  .mobile-menu-toggle, .main-nav, .footer-nav, .footer-contact, .cta-button, .feature-item img, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay, header, footer {
    display: none !important;
    visibility: hidden !important;
  }
  body, .container, section, .content-wrapper {
    background: #fff !important;
    color: #22313F !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
