/* ===================================================
   CYBERFOAM SPEECH SCHOOL – Scandinavian Clean Style
   Comprehensive CSS for all pages, flexbox only layouts
   =================================================== */

/* ---------------------------------------------------
   RESET & BASE – Respect Scandinavian white space
-----------------------------------------------------*/

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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html {
  font-size: 16px; /* Sets base for rems */
  scroll-behavior: smooth;
  background-color: #F6F7F9;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #152744;
  background-color: #F6F7F9;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #29B49E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #152744;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 1.5rem;
}
strong { font-weight: 600; }
em, i { font-style: italic; }

/* -------------------------------------------
   TYPOGRAPHY & HEADINGS - Scandinavian fonts
---------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #152744;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, li {
  font-size: 1rem;
  margin-bottom: 8px;
}
.subheadline { color: #3A485F; font-size: 1.15rem; margin-bottom: 18px; font-weight: 400; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* ---------------------------------------
   CONTAINERS & SECTIONS & SPACING
-----------------------------------------*/

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section,
.features,
.services,
.testimonials,
.cta,
.cta-help,
.cta-newsletter,
.courses-select,
.workshop-list,
.contact-hero,
.contact-info,
.contact-faq,
.legal,
.confirmation,
.about,
.team {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(21,39,68,0.07);
}

@media (max-width: 600px) {
  .section,
  .features,
  .services,
  .testimonials,
  .cta,
  .cta-help,
  .cta-newsletter,
  .courses-select,
  .workshop-list,
  .contact-hero,
  .contact-info,
  .contact-faq,
  .legal,
  .confirmation,
  .about,
  .team {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
}

.text-section, .faq-list, .feature-grid, .service-list, .course-grid, .resource-cards {
  margin-bottom: 18px;
}

.text-section ul, .text-section ol {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 18px;
}

.text-section ul li, .text-section ol li {
  margin-bottom: 6px;
  list-style-type: disc;
}

.brand-style {
  color: #29B49E;
  font-weight: 500;
  font-size: 1.1rem;
}

/* -------------------------------------
   NAVIGATION BAR & HEADER
---------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(21,39,68,0.04);
  padding: 0 0 0 0;
  position: relative;
  z-index: 1000;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 8px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 10px;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #152744;
  background: none;
  padding: 8px 11px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  display: flex;
  align-items: center;
}
.main-nav a.cta-primary {
  background: #29B49E;
  color: #fff;
  padding: 8px 18px;
  margin-left: 6px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(41,180,158,0.09);
  transition: box-shadow .22s, background .22s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #152744;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(21,39,68,.10);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6E8ED;
  color: #29B49E;
}

/* Hide the mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    position: absolute;
    right: 24px;
    top: 14px;
    font-size: 2.2rem;
    background: #fff;
    border: none;
    color: #152744;
    z-index: 1200;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #E6E8ED;
    outline: none;
  }
}

/*
--------------------------
MOBILE MENU OVERLAY
--------------------------
*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230,232,237,0.96);
  z-index: 2100;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.6,.2,.2,1);
  box-shadow: 0 2px 20px 0 rgba(21,39,68,0.09);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0vw);
  pointer-events: auto;
  transition: transform 0.38s cubic-bezier(.25,1,.3,1);
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 14px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #152744;
  cursor: pointer;
  z-index: 2200;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E6E8ED;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #152744;
  background: none;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  width: 90%;
  text-align: left;
  transition: background 0.17s, color 0.14s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #d1dfd9;
  color: #29B49E;
  outline: none;
}

@media (min-width: 769px) {
  .mobile-menu {display: none !important;}
  .mobile-menu-toggle {display: none !important;}
}

/* ---------------------------------------------
   HERO AREAS (Landing page + contact)
-----------------------------------------------*/
.hero {
  background: linear-gradient(135deg, #E6E8ED 0%, #f9fafb 90%);
  margin-bottom: 60px;
  padding: 64px 20px 64px 20px;
  box-shadow: 0 2px 24px 0 rgba(41,180,158,0.04);
  border-radius: 24px;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  margin: 0 auto;
  gap: 20px;
}
.hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.8rem;
  line-height: 1.08;
  color: #152744;
  margin-bottom: 16px;
}
.hero .subheadline {
  color: #3A485F;
  font-size: 1.22rem;
  max-width: 600px;
}

@media (max-width: 600px) {
  .hero {
    padding: 34px 8px 34px 8px;
    border-radius: 14px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* -------------------------------------------
   FEATURE / SERVICE GRIDS (Flex layouts)
-------------------------------------------*/
.feature-grid, .service-list, .course-grid, .resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.feature-icon-desc, .service-card, .resource-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(21,39,68,0.06);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.feature-icon-desc img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature-icon-desc h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: #152744;
}
.feature-icon-desc p {
  color: #536075;
  font-size: 1rem;
  margin-bottom: 0;
}

/* SPECIAL CARD HOVER (subtle float, accent shadow) */
.feature-icon-desc:hover, .service-card:hover, .resource-card:hover {
  box-shadow: 0 8px 28px 0 rgba(41,180,158,0.08), 0 2px 14px 0 rgba(21,39,68,0.07);
  transform: translateY(-4px) scale(1.022);
  z-index: 2;
}

/* Service Cards (index, courses, etc.) */
.service-card h3 {
  font-size: 1.06rem;
  margin-bottom: 2px;
  font-weight: 700;
  color: #152744;
}
.service-card .price, .service-card .date {
  color: #29B49E;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 1.08rem;
}
.service-card p {
  color: #3A485F;
  font-size: 0.99rem;
}

.service-card a,
.service-card .enroll-btn,
.service-card .register-btn {
  margin-top: 18px;
  background: #29B49E;
  color: #fff;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1rem;
  transition: background 0.21s, box-shadow 0.18s,
    color 0.18s;
  box-shadow: 0 2px 10px 0 rgba(41,180,158,0.09);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.service-card a:hover, .service-card a:focus,
.enroll-btn:hover, .register-btn:hover {
  background: #152744;
  color: #fff;
  outline: none;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .course-grid, .resource-cards {
    gap: 16px;
  }
  .feature-icon-desc, .service-card, .resource-card {
    min-width: 190px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list, .resource-cards {
    flex-direction: column;
    gap: 14px;
  }
  .feature-icon-desc, .service-card, .resource-card {
    min-width: 0;
    width: 100%;
    padding: 18px 10px 22px 10px;
  }
}

/* FAQ Layouts */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
}
.faq-item {
  background: #F6F7F9;
  border-left: 4px solid #29B49E;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(21,39,68,0.03);
  padding: 18px 18px 12px 18px;
  margin-bottom: 0;
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  color: #152744;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.faq-item p {
  color: #3A485F;
  font-size: 0.98rem;
}
.faq-item:hover {
  box-shadow: 0 6px 16px 0 rgba(41,180,158,0.08);
}

@media (max-width: 600px) {
  .faq-item {
    padding: 14px 8px 8px 12px;
  }
}

/* -------------------------------------
   CTA / NEWSLETTER
---------------------------------------*/
.cta, .cta-help, .cta-newsletter {
  background: #f2f6f4;
  border-radius: 20px;
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 14px 0 rgba(41,180,158,0.08);
}
.cta h2, .cta-help h2, .cta-newsletter h2 {
  color: #152744;
  margin-bottom: 16px;
}
.cta p, .cta-help p, .cta-newsletter p {
  margin-bottom: 14px;
  color: #3A485F;
}
.cta a.cta-primary,
.cta-help a.cta-primary,
.cta-newsletter a.cta-primary {
  background: #29B49E;
  color: #fff;
  border-radius: 22px;
  padding: 13px 34px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  box-shadow: 0 2px 14px 0 rgba(41,180,158,0.14);
  border: none;
}
.cta a.cta-primary:hover,
.cta-help a.cta-primary:hover,
.cta-newsletter a.cta-primary:hover {
  background: #152744;
  color: #fff;
}
@media (max-width: 600px) {
  .cta, .cta-help, .cta-newsletter {
    padding: 24px 8px;
    border-radius: 13px;
  }
}

/* -------------------------------------
   TESTIMONIALS / REVIEW CARDS
---------------------------------------*/
.testimonials, .testimonial-section {
  background: #fff;
  border-radius: 18px;
  padding: 38px 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F6F7F9;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(21,39,68,0.04);
  margin-bottom: 20px;
  padding: 20px 24px 16px 24px;
  color: #152744;
  max-width: 640px;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-style: italic;
  color: #152744;
  padding-left: 0;
  border-left: none;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #29B49E;
  font-weight: 600;
}
.testimonial-card div {
  color: #3A485F;
  font-size: 0.96rem;
  margin-bottom: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(41,180,158,0.13);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px 8px 8px 10px;
    border-radius: 8px;
    max-width: 100%;
  }
}

/* ----------------------------------------
   FOOTER
----------------------------------------*/
footer {
  background: #f9fafb;
  padding: 30px 0 10px 0;
  color: #3A485F;
  border-top: 1px solid #e8e8ee;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: 0.99rem;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #29B49E;
  text-decoration: none;
  transition: color 0.17s;
  padding: 2px 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #152744;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  color: #3A485F;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.footer-contact a {
  color: #29B49E;
  font-weight: 500;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo img {
  width: 42px;
  height: 42px;
  margin-top: 4px;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.94rem;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.95rem;
  }
}

/* ---------------------------------------
   MISC - CARDS, FORMS, GRIDS, LAYOUTS
-----------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(21,39,68,.06);
  padding: 18px 14px;
  transition: box-shadow .16s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(21,39,68,0.12);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------------------------
   BUTTONS & LINKS
-----------------------------------------*/
.cta-primary {
  background: #29B49E;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 34px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 14px 0 rgba(41,180,158,0.13);
  cursor: pointer;
  text-align: center;
  margin: 5px 0;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #152744;
  color: #fff;
  outline: none;
  text-decoration: none;
}
a.button, button, .button {
  appearance: none;
  background: #E6E8ED;
  color: #152744;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 22px;
  font-family: inherit;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  outline: none;
}
a.button:hover, button:hover, .button:hover,
a.button:focus, button:focus, .button:focus {
  background: #29B49E;
  color: #fff;
}

/* ---------------------------------------------
   SPECIAL: COOKIE CONSENT BANNER & MODAL
---------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #152744;
  box-shadow: 0 -2px 16px 0 rgba(21,39,68,0.07);
  padding: 20px 12px 16px 12px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.33,1,.2,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn, .cookie-banner button {
  background: #E6E8ED;
  color: #152744;
  border: none;
  border-radius: 16px;
  padding: 7px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.18s, color 0.15s;
}
.cookie-btn.accept {
  background: #29B49E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #152744;
  color: #fff;
  outline: none;
}
.cookie-btn.settings {
  background: #fff;
  color: #29B49E;
  border: 2px solid #E6E8ED;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: #29B49E;
  color: #152744;
  outline: none;
}
.cookie-btn.reject {
  background: #E6E8ED;
  color: #152744;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #3A485F;
  color: #fff;
  outline: none;
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: 12px 5px 10px 5px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
  }
}
@media (max-width: 340px) {
  .cookie-banner {
    font-size: 0.88rem;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,39,68,0.09);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.41,1,.2,1);
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 48px 0 rgba(21,39,68,0.21);
  padding: 32px 26px 24px 26px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  animation: fadeInUp 0.4s cubic-bezier(.57,1.2,.61,1.01);
}
@keyframes fadeInUp {
  from {transform: translateY(38px) scale(.96); opacity: 0.25;}
  to {transform: none; opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  font-size: 1.7rem;
  background: #E6E8ED;
  color: #152744;
  border: none;
  border-radius: 50%;
  padding: 1px 9px 2px 9px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(21,39,68,0.09);
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #29B49E;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #E6E8ED;
  position: relative;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  transition: background 0.16s;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  margin: 0; cursor: pointer;
}
.cookie-switch-slider {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #b9c3ce;
  transition: left 0.16s, background 0.16s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 20px;
  background: #29B49E;
}
.cookie-category.essential label { color: #3A485F; }
.cookie-category.essential .cookie-switch {
  background: #b7c8bb;
}
.cookie-category.essential input:checked + .cookie-switch-slider {
  background: #b7c8bb;
}

/* -------------------------------------
   UTILITY CLASSES
-------------------------------------*/
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------
   RESPONSIVENESS (Mobile-first)
-------------------------------------*/
@media (max-width: 700px) {
  .container {
    padding: 0 4px;
  }
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.24rem; }
}

@media (max-width: 500px) {
  .content-wrapper {
    gap: 9px;
  }
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
}

/* -------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
-------------------------------------*/
.card, .feature-icon-desc, .service-card, .resource-card, .cta-primary, .button, .testimonials, .testimonial-card,
.cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.18s, transform 0.16s, background 0.18s, color 0.11s;
}

/* -------------------------------------
   FORMS, INPUTS (if any in future)
-------------------------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #E6E8ED;
  border-radius: 8px;
  background: #fff;
  color: #152744;
  padding: 10px 14px;
  margin-bottom: 12px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #29B49E;
  outline: none;
}

/* Prevent unwanted horizontal scroll */
body, html {
  overflow-x: hidden;
}

/* ===============================
   END OF CSS FILE
=============================== */
