/* ----------------------------------------------
   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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F5F4F1;
  color: #20435C;
  font-family: Arial, 'Segoe UI', sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ----------------------------------------------
   BRAND COLOR VARIABLES & FONTS (FALLBACK)
----------------------------------------------- */
:root {
  --color-primary: #20435C;
  --color-secondary: #66A2B8;
  --color-accent: #F5F4F1;
  --color-warning: #FFB627;
  --color-success: #53DB9A;
  --color-error: #F94D4D;

  --color-play-yellow: #FFEF7E;
  --color-play-pink: #FFA7C4;
  --color-play-teal: #63E6D7;
  --color-play-lime: #DAFF6D;
  --color-dark: #20435C;
  --color-light: #F5F4F1;
  --color-white: #fff;
}

/* ----------------------------------------------
   TYPOGRAPHY
----------------------------------------------- */
body {
  font-family: Arial, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: var(--color-accent);
  color: var(--color-dark);
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
small {
  font-size: 0.9em;
  color: #5279a0;
}

/* Playful Headlines */
.hero h1,
.cta h2,
.faq h2,
section > h2 {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--color-secondary);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 1px 2px 0 var(--color-light), 2px 6px 16px #00000015;
  /* Subtle text pop */
}

/* Bullets playful marker */
ul li::marker {
  color: var(--color-play-pink);
}
ol li::marker {
  color: var(--color-play-teal);
}

/* ----------------------------------------------
   CONTAINER & SECTION LAYOUTS
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.feature-grid, .service-grid, .facts-grid, .guide-section, .team-members, .card-container, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 2px 16px #285b8224;
  padding: 24px 18px;
  transition: box-shadow 0.28s, transform 0.28s;
}
.card:hover {
  box-shadow: 0 6px 22px #20435C22, 0 1px 2px #0002;
  transform: translateY(-4px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.articles-list, .categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

/* ----------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 4px 20px #20435c0a;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 8px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.3s;
  color: var(--color-primary);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2.5px solid var(--color-play-pink);
}
/* Request button */
.button.primary {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 28px;
  padding: 12px 30px;
  border: none;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 1.5px 12px #20435c17;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.button.primary:after {
  content: '';
  position: absolute;
  left: 40%;
  top: 50%;
  width: 15px;
  height: 15px;
  background: var(--color-play-lime);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(8px);
  z-index: 1;
  transition: opacity 0.3s;
}
.button.primary:hover, .button.primary:focus {
  background: var(--color-play-pink);
  color: var(--color-dark);
  box-shadow: 0 5px 18px #20435c27;
  transform: translateY(-2px) scale(1.045);
}

.button.secondary {
  background: var(--color-white);
  color: var(--color-secondary);
  border: 2.5px solid var(--color-secondary);
  border-radius: 22px;
  font-weight: 650;
  padding: 10px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.21s;
  margin-left: 0;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--color-play-teal);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.mobile-menu-toggle {
  background: var(--color-play-pink);
  border: none;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 2rem;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  display: none;
  z-index: 120;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  transform: translateX(-100%);
  transition: transform 340ms cubic-bezier(.66,.12,.56,1.09);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 44px 10px #20435c31;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-play-yellow);
  color: var(--color-primary);
  font-size: 2.4rem;
  border-radius: 50%;
  border: none;
  padding: 6px 20px 9px 20px;
  margin: 14px 18px 0 0;
  box-shadow: 0 2px 8px #20435c12;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-play-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 40px;
  font-size: 1.25rem;
}
.mobile-nav a {
  color: var(--color-primary);
  padding: 10px 8px 10px 0;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
  font-weight: 700;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-play-teal);
  color: var(--color-white);
}

@media (max-width: 1024px) {
  header .main-nav,
  header .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

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

/* ----------------------------------------------
   HERO SECTION
----------------------------------------------- */
.hero {
  background: linear-gradient(91deg, var(--color-play-yellow) 0%, var(--color-play-teal) 50%, #FAF8F2 100%);
  padding: 50px 0 40px 0;
  margin-bottom: 0;
  border-radius: 0 0 48px 48px/0 0 28px 28px;
  box-shadow: 0 4px 36px #66A2B818;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-secondary);
  margin-bottom: 14px;
}
.hero .button.primary {
  margin-top: 14px;
}

/* ----------------------------------------------
   FEATURE / FACTS / SERVICES GRIDS
----------------------------------------------- */
.feature-grid, .facts-grid, .service-grid, .team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature, .service, .team-member, .pricing-tier {
  flex: 1 1 270px;
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 1.5px 12px #20435c12;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  min-width: 210px;
  transition: transform 0.23s, box-shadow 0.25s;
  margin-bottom: 20px;
}
.feature:hover, .service:hover, .team-member:hover, .pricing-tier:hover {
  box-shadow: 0 7px 26px #20435c25;
  transform: translateY(-2.5px) scale(1.03);
}
.feature img, .service img, .team-member img {
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1.5px 0 var(--color-play-teal));
}
.feature h3, .service h3, .facts-grid h3 {
  color: var(--color-secondary);
}

/* Facts Grid styling */
.facts-grid > div {
  background: var(--color-play-yellow);
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 180px;
  box-shadow: 0 1.5px 10px #fff3  ;
  transition: background 0.22s;
}
.facts-grid > div:hover {
  background: var(--color-play-teal);
}

/* Qualifications overview */
.qualifications-overview {
  margin-top: 24px;
  background: var(--color-play-pink);
  border-radius: 16px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 1.5px 8px #20435c1a;
}
.qualifications-overview h3 {
  margin-bottom: 10px;
  color: var(--color-dark);
}

/* ----------------------------------------------
   PRICING TABLE
----------------------------------------------- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.pricing-tier {
  border: 3px solid var(--color-play-lime);
  background: var(--color-play-yellow);
  box-shadow: 0 3px 13px #20435c17;
  text-align: left;
  flex: 1 1 220px;
  transition: box-shadow 0.3s, transform 0.18s;
  margin-bottom: 20px;
  border-radius: 22px;
}
.pricing-tier:hover {
  box-shadow: 0 12px 24px #FFA7C444;
  transform: translateY(-2px) scale(1.025);
}
.pricing-tier h3 {
  color: var(--color-secondary);
}
.pricing-tier p {
  font-size: 1.22rem;
  color: var(--color-dark);
  font-weight: bold;
  margin-top: 12px;
}

/* ----------------------------------------------
   TESTIMONIALS
----------------------------------------------- */
.testimonial-slider {
  background: var(--color-play-lime);
  border-radius: 24px;
  margin: 40px 18px 0 18px;
  box-shadow: 0 2px 32px #20435c17;
  padding: 38px 0 34px 0;
}
.testimonial-slider h2 {
  color: var(--color-primary);
  margin-bottom: 22px;
}
.testimonial-slider .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 12px 22px;
  box-shadow: 0 3px 12px #20435C13;
  color: #20435C;
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:before {
  content: '“';
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 3rem;
  position: absolute;
  top: 2px;
  left: 9px;
  color: var(--color-play-pink);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px #20435C23;
  transform: scale(1.012) translateY(-1px);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #20435C;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-top: 10px;
}
.testimonial-meta strong {
  color: var(--color-primary);
}

/* ----------------------------------------------
   FAQ & TIMELINE
----------------------------------------------- */
.faq {
  background: var(--color-play-pink);
  border-radius: 24px;
  box-shadow: 0 3px 16px #20435C15;
  padding: 34px 0 30px 0;
  margin: 34px 0;
}
.faq h2 {
  color: var(--color-primary);
  margin-bottom: 12px;
}
.faq .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 2px 10px #20435c0a;
  margin-bottom: 20px;
  flex: 1 1 285px;
  min-width: 180px;
  transition: box-shadow 0.22s;
}
.faq-item h3 {
  color: var(--color-secondary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.faq-item .answer {
  color: var(--color-dark);
}
.timeline {
  background: var(--color-play-teal);
  border-radius: 12px;
  color: var(--color-primary);
  padding: 12px 19px;
  font-size: 1.08rem;
  box-shadow: 0 0.5px 8px #20435c19;
  margin-top: 20px;
}

/* ----------------------------------------------
   CTA SECTION
----------------------------------------------- */
.cta {
  background: linear-gradient(90deg, var(--color-play-lime) 0%, var(--color-accent) 100%);
  box-shadow: 0 3px 22px #20435c0f;
  border-radius: 22px;
  margin: 38px 20px 0 20px;
  padding: 36px 0;
}
.cta .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.cta h2 {
  font-size: 1.7rem;
  color: var(--color-secondary);
}
.cta p {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* ----------------------------------------------
   THANK YOU (DANKE) SECTIONS
----------------------------------------------- */
.thank-you-message {
  background: var(--color-play-teal);
  border-radius: 16px;
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #20435C12;
}
.next-steps-info {
  background: var(--color-play-lime);
  border-radius: 12px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 2px 14px #20435C0f;
}
.next-steps-info h2 {
  font-size: 1.2rem;
  color: var(--color-secondary);
}
.next-steps-info ul {
  margin-top: 8px;
}

/* ----------------------------------------------
   CONTACT, MAP, HOURS
----------------------------------------------- */
.contact-details, .map-location, .opening-hours {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1.5px 12px #20435c0a;
  padding: 18px 15px;
  min-width: 180px;
}
.contact-details ul, .opening-hours ul {
  padding-left: 0;
  margin-bottom: 6px;
  list-style: none;
}
.contact-details li, .opening-hours li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.contact-details li img, .map-location img {
  height: 22px;
  margin-right: 5px;
}

/* ----------------------------------------------
   FOOTER
----------------------------------------------- */
footer {
  background: #fff;
  border-radius: 32px 32px 0 0 / 26px 26px 0 0;
  box-shadow: 0 -2px 24px #20435c16;
  padding: 36px 0 26px 0;
  margin-top: 54px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  color: var(--color-primary);
  font-weight: 650;
  transition: color 0.2s, text-decoration 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-direction: column;
  background: var(--color-play-yellow);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 0.5px 8px #20435C0D;
}
.footer-contact img {
  height: 32px;
}
footer address {
  font-style: normal;
  color: var(--color-dark);
  font-size: 1rem;
  margin-top: 0;
}
footer small {
  display: block;
  margin-top: 28px;
  color: #687e98;
  font-size: 0.96rem;
}

/* ----------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-play-pink);
  color: var(--color-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 -4px 28px #20435c28;
  z-index: 5000;
  animation: cookie-bounce-in 0.8s cubic-bezier(.48,1.34,.45,0.99) 1;
}
@keyframes cookie-bounce-in { 0% {transform: translateY(90px) scale(.7); opacity: 0.2;} 100% {transform: none; opacity: 1;} }
.cookie-banner__text {
  flex: 1 1 220px;
  font-size: 1rem;
  margin-right: 10px;
}
.cookie-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1.5px 10px #20435c10;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner__accept {
  background: var(--color-play-lime);
  color: var(--color-dark);
}
.cookie-banner__accept:hover, .cookie-banner__accept:focus {
  background: var(--color-success);
  color: #fff;
}
.cookie-banner__reject {
  background: var(--color-white);
  border: 2px solid var(--color-play-pink);
  color: var(--color-primary);
}
.cookie-banner__reject:hover, .cookie-banner__reject:focus {
  background: var(--color-error);
  color: #fff;
  border-color: var(--color-error);
}
.cookie-banner__settings {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: var(--color-primary);
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #20435C22;
  z-index: 6000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.22s cubic-bezier(.48,1.34,.45,0.99) 1;
}
@keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } }
.cookie-modal.open { display: flex; }
.cookie-modal__content {
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 13px 54px #20435c2e;
  padding: 36px 24px 28px 24px;
  width: 95%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 10px; right: 14px;
  background: var(--color-play-pink);
  color: var(--color-dark);
  border: none;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal__close:hover {
  background: var(--color-error);
  color: #fff;
}
.cookie-modal__h2 {
  font-size: 1.32rem;
  color: var(--color-secondary);
  margin-bottom: 17px;
}
.cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-switch {
  margin-left: 5px;
  width: 44px;
  height: 26px;
  border-radius: 16px;
  border: 2px solid var(--color-secondary);
  background: var(--color-accent);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-switch[data-active="true"] {
  background: var(--color-play-lime);
  border-color: var(--color-success);
}
.cookie-switch__knob {
  content: '';
  position: absolute;
  left: 2px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-secondary);
  transition: left 0.15s, background 0.15s;
}
.cookie-switch[data-active="true"] .cookie-switch__knob {
  left: 21px;
  background: var(--color-success);
}
.cookie-modal__actions {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-top: 16px;
}
.cookie-modal__actions button {
  flex: 1 1 0;
}

/* ----------------------------------------------
   RESPONSIVE: MOBILE LAYOUT
----------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .footer-contact, .facts-grid > div, .feature, .service, .team-member, .pricing-tier, .card {
    min-width: 140px;
    padding: 17px 12px;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 4px 0;
  }
  h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .feature-grid, .facts-grid, .service-grid, .team-members, .pricing-table {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .section, .faq, .cta {
    padding: 20px 8px;
    margin-left: 2px;
    margin-right: 2px;
  }
  .hero {
    padding: 33px 0 20px 0;
    border-radius: 0 0 26px 26px/0 0 12px 12px;
  }
  .hero .content-wrapper {
    gap: 10px;
  }
  .feature, .service, .team-member, .pricing-tier,
  .faq-item, .testimonial-card, .thank-you-message, .next-steps-info, .footer-contact, .card {
    flex: 1 1 100%;
    min-width: 97vw;
    border-radius: 12px;
    padding: 13px 7px;
    margin-bottom: 14px;
  }
  .container, .footer-contact {
    padding-left: 6px;
    padding-right: 6px;
  }
  .testimonials-slider, .faq, .cta {
    border-radius: 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-contact {
    padding: 15px 10px;
  }
}
@media (max-width: 600px) {
  .testimonial-slider, .faq, .cta, .section {
    margin: 0 2px 20px 2px !important;
    padding-left: 3px;
    padding-right: 3px;
  }
  .hero {
    padding: 19px 0 8px 0;
    font-size: 0.96rem;
  }
  .cta h2 {
    font-size: 1.25rem;
  }
}

/* ----------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
----------------------------------------------- */
.button, .faq-item, .feature, .service, .team-member, .card, .testimonial-card, .pricing-tier {
  transition: box-shadow 0.18s, transform 0.18s, background 0.2s, color 0.2s;
}
.button:active {
  transform: scale(0.97);
  box-shadow: 0 1px 3px #20435c23;
}
nav a, .card, .button {
  transition: color 0.14s, box-shadow 0.16s, transform 0.13s, border-color 0.16s;
}
h1, h2, h3, .hero h1, .cta h2 {
  transition: color 0.2s, text-shadow 0.22s;
}

/* Some playful bounce on hover for cards and features */
.feature:hover, .service:hover, .team-member:hover, .testimonial-card:hover, .pricing-tier:hover {
  animation: wiggle 0.17s 1;
}
@keyframes wiggle {
  0% { transform: scale(1) rotateZ(0deg); }
  46% { transform: scale(1.045) rotateZ(2.2deg); }
  88% { transform: scale(0.99) rotateZ(-2deg); }
  100% { transform: scale(1) rotateZ(0deg); }
}

/* ----------------------------------------------
   UTILITIES & GENERAL SPACING SYSTEM
----------------------------------------------- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }
.gap-2 { gap: 16px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Foo: make sure there is always min 20px between content cards */
.card-container > *,
.content-wrapper > *,
.feature-grid > *,
.service-grid > *,
.facts-grid > *,
.team-members > *,
.pricing-table > *,
.testimonial-slider .content-wrapper > *,
.faq .content-wrapper > * {
  margin-bottom: 20px;
}

/* ----------------------------------------------
   ACCESSIBILITY
----------------------------------------------- */
.button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
[role='dialog'], .cookie-modal__content {
  outline: none !important;
}

/* ----------------------------------------------
   SPECIFIC SPACING AND ALIGNMENT CLASSES (MANDATORY)
----------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------
   END OF STYLES
----------------------------------------------- */
