/* =========================
   SauberGlanz "playful_dynamic" Style CSS
   © 2024 SauberGlanz
   ========================= */

/* ========== CSS RESET & BASE ========== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222a31;
  background: #f7fafc;
  min-height: 100vh;
  /* playful fade-in animation for page load */
  animation: bodyFadeIn 0.8s cubic-bezier(.51,1.57,.68,.46);
}
@keyframes bodyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #216583;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 500;
}
a:hover, a:focus {
  color: #74c4c7;
  outline: none;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #157179;
  letter-spacing: -.015em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  color: #216583;
  font-weight: 700;
}
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========== SPACING (MANDATORY PATTERNS) ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px 0 rgba(33, 101, 131, 0.07);
  position: relative;
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #f3fbfd;
  box-shadow: 0 4px 18px 0 rgba(33, 101, 131, 0.09);
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.51,1.57,.68,.46), box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(116, 196, 199, 0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-start;
}

/* ========== HEADER & NAV ========== */
header {
  background: #fff;
  border-bottom: 4px solid #216583;
  box-shadow: 0 2px 20px 0 rgba(33, 101, 131, 0.055);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #216583;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #74c4c7;
  color: #fff;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #216583;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 34px;
  font-size: 1.16rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-left: 10px;
  box-shadow: 0 4px 16px 0 rgba(33, 101, 131, 0.08);
  transition: background 0.18s, transform 0.1s, box-shadow 0.18s;
  text-shadow: 0 1px 2px #0a35540c;
  animation: btnPulse 2s infinite alternate cubic-bezier(0.92, 0.04, 0.43, 0.87);
}
@keyframes btnPulse {
  0% { box-shadow: 0 4px 16px 0 rgba(33, 101, 131, 0.10); }
  100% { box-shadow: 0 8px 32px 0 rgba(33, 101, 131, 0.18); }
}
.btn-primary:hover, .btn-primary:focus {
  background: #157179;
  transform: scale(1.04) rotate(-2deg);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #74c4c7;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 1.02rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(116, 196, 199, 0.15);
  transition: background 0.18s, transform 0.1s, box-shadow 0.18s;
  margin-top: 14px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #216583;
  color: #fff;
  transform: scale(1.04) rotate(2deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #74c4c7;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 10px;
  z-index: 1202;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(116, 196, 199, 0.11);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #157179;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #216583ee;
  box-shadow: 0 2px 40px 0 #15717933;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.18,0,.81,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 2;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #74c4c7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 120px;
  align-items: center;
  width: 100vw;
  z-index: 1;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.44rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: #157179;
  padding: 15px 36px;
  border-radius: 30px;
  width: min(85vw, 340px);
  text-align: center;
  box-shadow: 0 2px 20px rgba(116, 196, 199, 0.13);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #74c4c7;
  color: #216583;
  transform: scale(1.06) rotate(-3deg);
}

/* Show hamburger only on small screens */
@media (max-width: 1020px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/* Hide mobile menu toggle on desktop */
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(-10deg, #74c4c7 0%, #e7f8fd 100%);
  border-bottom: 6px solid #216583;
  margin-bottom: 0;
  animation: slideInHero 1.2s cubic-bezier(.51,1.57,.68,.46);
}
@keyframes slideInHero {
  from { opacity: 0; transform: translateY(-50px); }
  to   { opacity: 1; transform: none; }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero h1 {
  color: #216583;
  text-shadow: 0 2px 16px #71d3d613, 0 1px 0 #fff7;
  font-size: 2.3rem;
  margin-bottom: 14px;
}
.hero .subheadline {
  color: #157179;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  background: #eafdff;
  margin-bottom: 20px;
  padding: 13px 18px;
  border-radius: 24px 24px 12px 12px;
  box-shadow: 0 2px 12px 0 #5fcece18;
  letter-spacing: 0.01em;
  display: inline-block;
}
.hero .btn-primary {
  font-size: 1.25rem;
  margin-top: 20px;
}

/* ========== CARDS & FEATURE VISUALS ========== */
.feature-grid > div {
  background: #f7fafc;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(116, 196, 199, 0.08);
  padding: 26px 18px 22px;
  width: min(100%, 255px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  margin-bottom: 15px;
  transition: transform 0.14s, box-shadow 0.17s;
}
.feature-grid > div:hover {
  transform: scale(1.05) rotate(-2deg);
  background: #eafdff;
  box-shadow: 0 7px 24px 0 #74c4c739;
}
.feature-grid img {
  width: 38px;
  height: 38px;
}
.feature-grid h3 {
  color: #157179;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.feature-grid p {
  color: #3e434b;
  font-size: 0.98rem;
}

.benefit-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
  margin-bottom: 18px;
}
.benefit-highlights li {
  background: #74c4c7;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 24px;
  padding: 10px 22px;
  margin-bottom: 0;
  box-shadow: 0 2px 15px 0 #74c4c721;
}

/* ========== TESTIMONIALS & REVIEWS ========== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.testimonial-card {
  background: #fff;
  color: #222a31;
  box-shadow: 0 4px 18px 0 #15717919;
  border-radius: 18px;
  padding: 22px 24px;
  min-width: 260px;
  flex: 1 1 260px;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #216583;
  font-size: 1.09rem;
}
.testimonial-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
  color: #157179;
  font-weight: 700;
}
.testimonial-meta img {
  width: 20px;
  height: 20px;
}
.rating-summary, .review-summary, .positive-feedback {
  background: #eafdff;
  color: #157179;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 18px;
  margin-top: 16px;
  display: inline-block;
  box-shadow: 0 2px 10px 0 #74c4c70c;
}
.stats {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 15px 0 rgba(116, 196, 199, 0.09);
}
.stats strong {
  color: #216583;
  font-size: 1.25em;
}
.stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.stats li {
  background: #eafdff;
  color: #157179;
  border-radius: 20px;
  font-weight: bold;
  padding: 8px 16px;
  box-shadow: 0 2px 8px 0 #74c4c70a;
}

/* ========== TABLES (PRICING) ========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  margin-bottom: 18px;
  background: #fafbfe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px #15717914;
}
thead {
  background: #216583;
  color: #fff;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 13px 10px;
  text-align: left;
}
tbody td {
  padding: 13px 10px;
  border-bottom: 1px solid #e3e9f4;
  font-size: 1.02rem;
  color: #364453;
}
tbody tr:last-child td {
  border-bottom: none;
}

.pricing-explainer {
  background: #eafdff;
  color: #157179;
  border-radius: 12px;
  font-size: 1.08rem;
  padding: 12px 18px;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px #74c4c70b;
}
.offer-disclaimer {
  background: #fff8e5;
  color: #b97f01;
  border-radius: 10px;
  padding: 11px 15px;
  margin-bottom: 11px;
  font-size: 0.98rem;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-list > div {
  flex: 1 1 300px;
  background: #eafdff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px 0 #74c4c70a;
}
.faq-list h3 {
  color: #157179;
  margin-bottom: 5px;
}

/* ========== FOOTER ========== */
footer {
  background: #216583;
  color: #fff;
  padding: 32px 0 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 22px;
}
.footer-brand img {
  width: 60px;
  min-width: 40px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 0;
  background: #74c4c7;
  border-radius: 12px;
  padding: 6px 12px;
  width: fit-content;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: #fff;
  color: #157179;
}
.footer-contact {
  font-size: 0.96rem;
  color: #d8f8f8;
}
.footer-contact a {
  color: #fff1c2;
  text-decoration: underline;
  font-weight: bold;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #216583;
  background: #fff9c7;
}

/* ========== LEGAL TEXT ========== */
.legal-text h2 {
  color: #216583;
  font-size: 1.2rem;
  margin-top: 20px;
}
.legal-text p, .legal-text ul, .legal-text li {
  color: #364453;
  font-size: 0.99rem;
}
.legal-text ul {
  margin-bottom: 12px;
}

/* ========== CONTACT DETAILS & MAP ========== */
.contact-details ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  background: #eafdff;
  border-radius: 12px;
  padding: 8px 13px;
}
.contact-details img {
  width: 24px;
  height: 24px;
}

.google-map-placeholder {
  background: #fff6d6;
  color: #b99406;
  border-radius: 12px;
  padding: 18px 16px;
  margin-top: 20px;
  box-shadow: 0 1px 8px #ffe6ac3a;
}

/* ========== ANIMATIONS & MICROINTERACTIONS ========== */
.card, .feature-grid > div, .testimonial-card, .btn-primary, .btn-secondary {
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(33, 101, 131, 0.180);
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1400;
  background: #216583;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-shadow: 0 -4px 30px #15717933;
  font-size: 1.09rem;
  border-radius: 24px 24px 0 0;
  animation: cookieSlideIn 0.8s cubic-bezier(.51,1.57,.68,.46);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 650;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  transition: background 0.17s, color 0.17s, transform 0.13s;
}
.cookie-banner .accept {
  background: #74c4c7;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 8px #74c4c770;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #216583;
  transform: scale(1.05);
}
.cookie-banner .reject {
  background: #fff;
  color: #157179;
  font-weight: 800;
  border: 2px solid #157179;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #157179;
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .settings {
  background: #ffdfc2;
  color: #b97f01;
  font-weight: 800;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #b97f01;
  transform: scale(1.05);
}

/* COOKIE MODAL (centered, sliding animation) */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #216583ba;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.32s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #216583;
  padding: 36px 26px 28px 26px;
  border-radius: 28px;
  min-width: min(97vw, 410px);
  box-shadow: 0 12px 44px #1571792b;
  position: relative;
  animation: cookieModalSlideIn .41s cubic-bezier(.24,1.18,.81,1.01);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@keyframes cookieModalSlideIn {
  from { transform: scale(0.7) translateY(90px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #157179;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eafdff;
}
.cookie-modal .category-row:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-toggle {
  width: 46px;
  height: 26px;
  background: #eafdff;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  transition: background 0.14s;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #157179;
  border-radius: 50%;
  transition: left 0.18s, background 0.16s;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked + .slider {
  left: 24px;
  background: #74c4c7;
}
.cookie-modal .cookie-toggle[disabled],
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  background: #f1f1f1;
  cursor: not-allowed;
}
.cookie-modal .cookie-toggle[disabled] .slider,
.cookie-modal .cookie-toggle[aria-disabled="true"] .slider {
  background: #bfc1c2;
}
.cookie-modal .buttons {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 21px;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  font-weight: 700;
}
.cookie-modal .save {
  background: #74c4c7;
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus { background: #216583; color: #fff; transform: scale(1.05); }
.cookie-modal .cancel {
  background: #fff;
  color: #157179;
  border: 2px solid #216583;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus { background: #216583; color: #fff; transform: scale(1.05); }
.cookie-modal .category-row label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
}
.cookie-modal .category-row .essential {
  color: #74c4c7;
  font-weight: 700;
  font-size: 0.98em;
  margin-left: 6px;
}

/* ========== UTILITY / GENERIC CLASSES ========== */
.text-center {
  text-align: center;
}
.mt-18 { margin-top: 18px; }
.mb-18 { margin-bottom: 18px; }
.mt-28 { margin-top: 28px; }

/* ========== RESPONSIVE DESIGN (MOBILE-FIRST) ========== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .faq-list, .testimonial-slider, .testimonial-list, .stats ul { gap: 12px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding: 26px 8px;
  }
  .section {
    padding: 25px 7px;
    margin-bottom: 34px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid > div {
    width: 100%;
    min-width: unset;
    margin-bottom: 13px;
  }
  .testimonial-slider, .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 15px;
  }
  .stats ul {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .benefit-highlights ul {
    flex-direction: column;
    gap: 7px;
  }
  .benefit-highlights li {
    font-size: 0.97rem;
    padding: 7px 12px;
  }
  .hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tbody td {
    text-align: left;
    padding-left: 40%;
    position: relative;
    min-height: 18px;
  }
  tbody td:before {
    position: absolute;
    left: 12px;
    top: 13px;
    width: 32%;
    color: #74c4c7;
    font-weight: bold;
    white-space: nowrap;
    content: attr(data-label);
    font-size: 0.97rem;
  }
  tbody tr {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    background: #eafdff77;
    border-radius: 6px;
    box-shadow: 0 1px 5px #74c4c707;
    padding-bottom: 3px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 1.35rem;
    text-align: center;
  }
  h2, h3 {
    font-size: 1.12rem;
    text-align: center;
  }
  .hero {
    border-bottom: 4px solid #216583;
    border-radius: 0 0 28px 28px;
  }
  .footer-brand img {
    width: 44px;
  }
  .cookie-modal {
    min-width: 99vw;
    padding: 16px 3vw 18px 3vw;
  }
}

/* ========== FUN FONTS & EXTRAS (playful touches) ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:800,700,600,400&family=Open+Sans:400,600,700&display=swap');

body, .content-wrapper, .testimonial-card, .feature-grid > div, .cookie-banner, .cookie-modal {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3, h4, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero h1, h1, h2 {
  font-weight: 800 !important;
}
/* Decorative slants and accents can be added via SVG inline or with extra playful color splashes */

/* ========== END ========== */
