/* --- CSS RESET & NORMALIZATION --- */
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 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #103057;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: disc inside;
}
a {
  color: #EE8700;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #284061;
  text-decoration: underline;
}

/* --- BRAND COLORS & FONTS --- */
:root {
  --primary: #284061;
  --secondary: #FFFFFF;
  --accent: #EE8700;
  --brand-bg: #DBE1EA;
  --brand-shadow: 0 4px 18px 0 rgba(40,64,97,0.09);
  --grey: #6C7F99;
  --vibrant-teal: #23D3C2;
  --vibrant-magenta: #F74687;
  --navy: #36547C;
  --text: #222F3E;
  --headline: #103057;
  --card-bg: #fff;
  --testimonial-bg: #FFF8F1;
  --footer-bg: #284061;
  --main-radius: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--headline);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.7rem; line-height: 1.14; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.24rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.05rem; }

@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.06rem; }
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

p { margin-bottom: 16px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .section {
    margin-bottom: 38px;
    padding: 28px 8px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--brand-shadow);
  border-radius: var(--main-radius);
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(247,70,135,0.10),(0,0,0,0.05);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}

.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) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px;
  background: var(--testimonial-bg);
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(247,70,135,0.04);
  min-width: 280px;
  max-width: 390px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.14s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px 0 rgba(40,64,97,0.09);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.18rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-author {
  color: var(--headline);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.95;
  margin-top: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-bg);
  padding: 24px 20px;
  border-radius: 14px;
}

/* ---- HEADER AND NAVIGATION ---- */
header {
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(40,64,97,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo-link img {
  height: 44px;
  min-width: 44px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
  padding: 3px 0;
  transition: color 0.23s;
}
nav a:hover, nav a:focus {
  color: var(--accent);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  padding: 12px 26px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(246,165,76,0.09);
  cursor: pointer;
  outline: none;
  transition: background 0.14s, transform 0.16s, box-shadow 0.16s;
  margin-left: 24px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 20px 0 rgba(246,165,76,0.11);
}

/* ----- MOBILE NAVIGATION ------ */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  padding: 4px 12px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(246,165,76,0.08);
  cursor: pointer;
  z-index: 40;
  transition: background 0.15s, color 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (max-width: 970px) {
  nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,64,97,0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.55,0,0.1,1);
  will-change: transform;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 120px 2px rgba(35,211,194,0.18);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #fff;
  background: none;
  border: none;
  margin: 28px 0 12px 24px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  padding: 18px 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 2.2;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 9px;
  transition: color 0.21s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
}

@media (max-width: 970px) {
  .mobile-menu {
    display: flex;
  }
}

/* --- HERO & CTA / HEADLINE SECTIONS --- */
.hero-section {
  background: linear-gradient(92deg, #FFF8F1 38%, #23D3C2 260%);
  border-bottom: 8px solid var(--accent);
  padding: 78px 0 60px 0;
  min-height: 340px;
  box-shadow: 0 10px 38px 0 rgba(35,211,194,0.02);
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.hero-section h1 {
  color: var(--navy);
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.subheadline {
  color: #F74687;
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.hero-section .btn-primary {
  margin-top: 14px;
  font-size: 1.17rem;
}
@media (max-width: 700px) {
  .hero-section {
    padding: 46px 0 36px 0;
    min-height: 200px;
  }
}

.cta-section {
  background: linear-gradient(110deg, var(--vibrant-teal) 7%, var(--secondary) 100%);
  box-shadow: 0 8px 40px 0 rgba(35,211,194,0.11);
  border-radius: 18px;
  text-align: center;
  padding: 52px 14px 42px 14px;
  margin-bottom: 0;
}
.cta-section h2 {
  font-size: 2rem;
  color: #F74687;
  margin-bottom: 26px;
}
.cta-section .btn-primary {
  font-size: 1.15rem;
  margin-bottom: 22px;
}
.contact-snippet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  color: #103057;
}

/* --- SERVICES & FEATURED --- */
.services-section, .service-list {
  background: var(--brand-bg);
  border-radius: 18px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.service-feature {
  background: var(--secondary);
  border-radius: 14px;
  flex: 1 1 210px;
  min-width: 230px;
  max-width: 300px;
  padding: 29px 18px;
  box-shadow: 0 4px 22px 0 rgba(40,64,97,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.17s;
  border-left: 6px solid var(--vibrant-magenta);
  margin-bottom: 20px;
}
.service-feature img {
  height: 38px;
  margin-bottom: 10px;
}
.service-feature:hover, .service-feature:focus-within {
  box-shadow: 0 14px 32px 0 rgba(35,211,194,0.10);
  border-left: 6px solid var(--accent);
  transform: translateY(-3px) scale(1.05);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 20px;
}
.service-item {
  background: #fff;
  border-left: 7px solid var(--accent);
  border-radius: 15px;
  box-shadow: 0 3px 22px 0 rgba(40,64,97,0.06);
  margin-bottom: 20px;
  padding: 18px 22px 16px 27px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.13s, border-color 0.17s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 10px 34px 0 rgba(35,211,194,0.09);
  border-left-color: var(--vibrant-magenta);
}
.service-item h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-price {
  font-family: 'Montserrat', sans-serif;
  color: var(--vibrant-magenta);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
}

/* --- TEAM SECTION --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.team-bio {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(40,64,97,0.07);
  padding: 22px 19px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 320px;
  margin-bottom: 20px;
  border-left: 7px solid var(--vibrant-teal);
  transition: box-shadow 0.15s, border-left 0.16s;
}
.team-bio h2 {
  color: var(--vibrant-magenta);
  margin-bottom: 7px;
}
.team-bio:hover, .team-bio:focus-within {
  box-shadow: 0 8px 40px 0 rgba(246,165,76,0.09);
  border-left: 7px solid var(--accent);
}

/* --- SEMINARS/BLOG --- */
.seminar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.seminar-item {
  background: #fff;
  border-left: 6px solid var(--vibrant-magenta);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(40,64,97,0.055);
  padding: 19px 19px 13px 25px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.13s;
}
.seminar-item:hover, .seminar-item:focus-within {
  box-shadow: 0 14px 32px 0 rgba(247, 70, 135,0.11);
  border-left: 6px solid var(--vibrant-teal);
  transform: scale(1.02);
}
.seminar-price {
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-top: 7px;
}
.seminar-topics ul {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 7px;
}
@media (max-width: 700px) {
  .seminar-topics ul {
    flex-direction: column;
    gap: 5px;
  }
}
.seminar-topics li {
  background: var(--vibrant-teal);
  color: #fff;
  border-radius: 14px;
  padding: 7px 13px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.blog-posts {
  background: var(--brand-bg);
  border-radius: 18px;
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.blog-post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(40,64,97,0.05);
  padding: 30px 21px 24px 28px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  border-left: 7px solid var(--vibrant-magenta);
  transition: box-shadow 0.13s, border-color 0.12s;
}
.blog-post h3 {
  color: var(--vibrant-magenta);
  margin-bottom: 9px;
}
.blog-post:hover, .blog-post:focus-within {
  box-shadow: 0 9px 36px 0 rgba(35,211,194,0.15);
  border-left: 7px solid var(--accent);
}
.blog-post a {
  font-family: 'Montserrat',sans-serif;
  color: var(--vibrant-teal);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.14s, text-decoration 0.14s;
}
.blog-post a:hover, .blog-post a:focus {
  color: var(--vibrant-magenta);
  text-decoration: underline;
}

/* --- SIMPLE LISTS & TEXT --- */
.text-section ul {
  padding-left: 17px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ol {
  padding-left: 17px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section li {
  color: #284061;
  font-weight: 500;
}

/* --- CONTACT & MAP SECTIONS --- */
.contact-section {
  background: var(--brand-bg);
  border-radius: 18px;
  padding: 46px 25px;
  margin-bottom: 40px;
}
.contact-section h1 {
  color: var(--accent);
  margin-bottom: 18px;
}
.contact-details {
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 500;
  font-size: 1.05rem;
}
.contact-snippet ul {
  padding-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-snippet li {
  color: var(--headline);
  font-weight: 500;
}
.map-section, .hours-section {
  background: #fff;
  border-radius: 14px;
  padding: 32px 18px;
  margin-bottom: 38px;
  box-shadow: 0 2px 12px 0 rgba(40,64,97,0.04);
}
.map-section h2, .hours-section h2 { color: var(--navy); margin-bottom: 13px; }
.hours-section ul {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 40px 0 22px 0;
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  opacity: 0.88;
  font-size: 1.03rem;
  transition: color 0.14s, opacity 0.12s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--accent);
  opacity: 1;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.88;
}
.footer-logo img {
  height: 48px;
}
@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-menu {
    gap: 15px;
    margin-bottom: 12px;
  }
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  background: var(--vibrant-teal);
  color: #fff;
  border-radius: 20px;
  padding: 72px 18px 56px 18px;
  text-align: center;
  margin-top: 40px;
  min-height: 250px;
}
.thank-you-section h1 {
  color: #fff;
  margin-bottom: 28px;
}
.thank-you-section .btn-primary {
  margin-top: 28px;
  background: #fff;
  color: var(--vibrant-magenta);
}
.thank-you-section .btn-primary:hover {
  background: var(--vibrant-magenta);
  color: #fff;
}

/* --- POLICY SECTIONS --- */
.privacy-policy-section, .cookie-policy-section, .gdpr-section, .terms-section {
  background: var(--brand-bg);
  border-radius: 18px;
  padding: 38px 20px;
  margin-bottom: 40px;
}

.policy-section h1, .cookie-policy-section h1 {
  color: var(--vibrant-magenta);
  margin-bottom: 19px;
}

/* --- COOKIES BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(40,64,97,0.12);
  border-top: 5px solid var(--accent);
  padding: 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  min-height: 70px;
  font-size: 1.07rem;
  animation: cookie-show 0.5s cubic-bezier(.33,1.77,.71,.73);
}
@keyframes cookie-show {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner-message {
  color: var(--navy);
  max-width: 640px;
  font-size: 0.98rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat',sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 20px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 9px rgba(246,165,76,0.07);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--vibrant-magenta);
  border: 2px solid var(--vibrant-magenta);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--vibrant-magenta);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--vibrant-teal);
  border: 2px solid var(--vibrant-teal);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--vibrant-teal);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    padding: 15px 9px;
  }
  .cookie-banner-actions {
    gap: 9px;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 999;
  background: rgba(40,64,97,0.63);
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 60px 0 rgba(40,64,97,0.16);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  min-height: 200px;
  color: var(--navy);
  font-size: 1.12rem;
  position: relative;
  animation: modal-show 0.33s cubic-bezier(.64,1.48,.44,1.01);
}
@keyframes modal-show {
  from { transform: translateY(30px) scale(0.94); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--vibrant-magenta);
  font-size: 1.32rem;
  margin-bottom: 18px;
}
.cookie-modal label {
  font-size: 1.01rem;
  font-weight: 500;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0 10px 0;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: none;
  font-size: 1.5rem;
  color: var(--grey);
  border: none;
  cursor: pointer;
  outline: none;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}
.cookie-category-switch {
  margin-left: 16px;
  vertical-align: middle;
}
.cookie-essential {
  color: #284061;
  font-weight: 700;
  margin-left: 10px;
}
.cookie-toggle {
  margin-left: 10px;
  accent-color: var(--vibrant-teal);
}

/* --- RESPONSIVE -- */
@media (max-width: 1150px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 850px) {
  .service-feature, .card, .blog-post, .seminar-item, .testimonial-card, .team-bio {
    max-width: 100vw;
    min-width: 200px;
  }
  .content-wrapper { gap: 14px; }
}
@media (max-width: 700px) {
  .team-list, .service-grid, .seminar-list, .post-list, .testimonials-list, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .service-feature, .card, .blog-post, .seminar-item, .testimonial-card, .team-bio {
    min-width: 100%;
    padding: 18px 8px;
  }
  .thank-you-section {
    padding: 30px 4px 24px 4px;
    min-height: 140px;
  }
  .contact-section, .privacy-policy-section, .cookie-policy-section, .gdpr-section, .terms-section {
    padding: 14px 7px;
  }
  .cta-section {
    padding: 26px 0 24px 0;
  }
  .map-section, .hours-section {
    padding: 14px 7px;
  }
}
/* --- FOCUS STYLES for Accessibility --- */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- MICRO-INTERACTIONS / ANIMATED EFFECTS --- */
button, .btn-primary, .cookie-btn {
  transition: box-shadow 0.15s, background 0.15s, color 0.14s, transform 0.13s;
}
button:active, .btn-primary:active, .cookie-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px 0 rgba(40,64,97,0.13);
}

::-webkit-scrollbar {
  width: 8px; background: #E6EDF4;
}
::-webkit-scrollbar-thumb {
  background: var(--vibrant-teal);
  border-radius: 8px;
}

@media (max-width: 430px) {
  h1, h2, h3 { font-size: 1.14rem; }
  .thank-you-section { min-height: 48px; }
}

/* --- PRINT Styles Minimal --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  body { background: #fff; color: #222; }
  .section, .container { box-shadow: none !important; }
}
