/* CSS RESET & BASE TYPOGRAPHY */
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #15171a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C3A54;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
:focus-visible {
  outline: 2px solid #1C3A54;
  outline-offset: 2px;
}

/* MONOCHROME COLOR PALETTE & BRAND */
:root {
  --mono-bg: #fff;
  --mono-bg-alt: #e6eaf0;
  --mono-card: #f7f8fa;
  --mono-dark: #15171a;
  --mono-mid: #777;
  --mono-border: #d7dae0;
  --brand-primary: #15171a;
  --brand-secondary: #222328;
  --brand-accent: #e6eaf0;
  --focus: #1C3A54;
}

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mono-bg);
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(20,21,22,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.14;
  letter-spacing: -1px;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--mono-dark);
  margin-bottom: 0.5em;
}
ul, ol {
  margin-left: 1.2em;
}
strong { font-weight: 600; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #3a3a3a;
  margin-bottom: 22px;
}
.text-section {
  margin-bottom: 28px;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--mono-card);
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(20,21,22,0.045);
  padding: 28px 24px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 34px rgba(20,21,22,0.09);
  transform: translateY(-4px) scale(1.012);
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid #d7dae0;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(20,20,20,0.06);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #4a4d50;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
}
/* testimonials slider container */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 0px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--mono-card);
  padding: 26px 18px 22px 18px;
  border-radius: 13px;
  box-shadow: 0 1.3px 5px rgba(22,23,24,0.04);
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 11px;
}
.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
/* List/Offer Section Layouts */
.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.offer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: var(--mono-card);
  padding: 26px 18px 22px 18px;
  border-radius: 13px;
  box-shadow: 0 1.3px 5px rgba(22,23,24,0.04);
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s;
}
.offer-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: var(--mono-card);
  padding: 20px 15px 18px 15px;
  border-radius: 10px;
  min-width: 170px;
  flex: 1 1 170px;
  box-shadow: 0 1px 4px rgba(15,15,15,0.03);
  margin-bottom: 20px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  text-align: left;
  padding: 13px 13px;
  border-bottom: 1.3px solid var(--mono-border);
  color: #181a1e;
  font-size: 1rem;
}
th {
  background: #f9fafd;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1.5px solid #d7dae0;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.faq-accordion details {
  background: var(--mono-card);
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(44,45,47,0.03);
  padding: 13px 17px 13px 17px;
  border: 1.1px solid #d7dae0;
  transition: box-shadow 0.17s;
}
.faq-accordion summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  list-style: none;
}
.faq-accordion summary::-webkit-details-marker {
  display: none;
}
.faq-accordion details[open] {
  box-shadow: 0 3px 13px rgba(40,40,40,0.07);
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 56px 0 64px 0;
  background: #191b1f;
  color: #fff;
  border-bottom: 2.5px solid #d7dae0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1, .hero .h1, .hero .subheadline {
  color: #fff;
}
.hero .cta-primary {
  background: #fff;
  color: #191b1f;
}
.hero .cta-primary:hover {
  background: #f5f6fa;
  color: #24262a;
}

/* BUTTONS & CTAS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  border-radius: 8px;
  background: var(--mono-dark);
  color: #fff;
  border: none;
  box-shadow: 0 3px 12px rgba(19,19,20,0.07);
  cursor: pointer;
  text-decoration: none;
  margin-top: 5px;
  transition: background 0.18s, color 0.16s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #333;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 7px;
  background: #e6eaf0;
  color: var(--brand-primary);
  font-weight: 500;
  border: 1.3px solid #c2c7c9;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #f5f6fa;
  color: #15171a;
}
button {
  cursor: pointer;
}

/* NAVIGATION HEADER */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid #e6eaf0;
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 20px 20px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
.main-nav img {
  height: 42px;
  margin-right: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #191b1f;
  font-size: 1.02rem;
  padding: 4px 0;
  position: relative;
  transition: color 0.16s;
}
.main-nav a.cta-primary {
  margin-left: auto;
  margin-right: 0;
  padding: 7px 24px;
  font-size: 1rem;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  color: #4CB050;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 17px;
  right: 23px;
  background: #15171a;
  color: #fff;
  border: none;
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 2.1rem;
  z-index: 41;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #333;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(28,30,33,0.98);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.79,.14,.15,.86), opacity 0.24s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 29px;
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1003;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22252a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 80px 0 0 0;
  width: 100vw;
  align-items: center;
}
.mobile-nav a {
  color: #f3f3f3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 500;
  padding: 14px 0 14px 0;
  text-align: center;
  width: 100vw;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22252a;
  color: #4CB050;
}

/* Hide main-nav on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav a.cta-primary {
    padding: 7px 17px;
    font-size: 0.97rem;
    margin-left: 0;
  }
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    padding: 15px 15px;
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* FOOTER */
footer {
  background: #191b1f;
  color: #e7e9ef;
  padding: 28px 0 16px 0;
  border-top: 2.5px solid #e6eaf0;
  font-size: 1rem;
  margin-top: 40px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}
.footer-menu a {
  color: #e6eaf0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #4CB050;
}
.footer-contact p, .footer-contact a {
  color: #d3d8e2;
  font-size: 1rem;
}
.footer-contact a:hover {
  color: #fff;
}

/* SITE SPECIFIC: SCHEDULE/NEWS/THANK YOU */
.news-ticker ul, .schedule-changes ul, .recent-changes-list ul, .next-steps ul {
  list-style: disc inside;
  color: #212325;
  font-size: 1rem;
  margin-bottom: 12px;
}
.schedule-table a {
  display: inline-block;
  margin-top: 12px;
}
.notification-alert {
  background: #fffbe6;
  color: #191b1f;
  border-left: 5px solid #15171a;
  border-radius: 7px;
  padding: 16px 18px;
  margin-top: 17px;
  font-size: 1.02rem;
}

/* ACCORDION + DETAILS FOCUS ON FAQ */
details[open] > summary {
  color: #4CB050;
}
details > summary {
  outline: none;
}
details > div {
  margin-top: 8px;
  color: #24262a;
  font-size: 0.99rem;
  opacity: 0.96;
}

/* ABOUT TEAM SECTION PROFILES */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.team-profiles .text-section {
  background: var(--mono-card);
  border-radius: 9px;
  box-shadow: 0 1.3px 5px rgba(22,23,24,0.04);
  padding: 18px 16px;
  min-width: 210px;
  flex: 1 1 210px;
}

/* CONTACT/INFO SECTIONS */
.contact-details ul, .opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #23252a;
  font-size: 1rem;
}
.contact-details li, .opening-hours li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.contact-details img, .opening-hours img {
  width: 22px; height: 22px;
}

/* CTA CALLOUT */
.cta-callout {
  margin-bottom: 60px;
  padding: 34px 18px 38px 18px;
  background: #191b1f;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 26px rgba(20,21,22,0.11);
}
.cta-callout h2, .cta-callout p, .cta-callout a {
  color: #fff;
}
.cta-callout a.cta-primary {
  background: #fff;
  color: #191b1f;
  margin-top: 20px;
}
.cta-callout a.cta-primary:hover {
  background: #f5f6fa;
  color: #24262a;
}

/* SPECIAL: THANK YOU SECTION */
.thank-you-section {
  background: var(--mono-bg);
  min-height: 320px;
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(19,20,21,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FORMS - Input Reset for All Forms (if added) */
input, textarea, select {
  border: 1.2px solid #d7dae0;
  border-radius: 7px;
  background: #fcfcfd;
  padding: 11px 14px;
  font-size: 1rem;
  color: #272828;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(23,23,24,0.04);
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1C3A54;
}
label {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #191b1f;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #191b1f;
  color: #fff;
  box-shadow: 0 -8px 19px rgba(30,30,30,0.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 23px 18px;
  transition: transform 0.33s cubic-bezier(.75,.16,.28,.99), opacity 0.2s;
  gap: 16px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-banner .accept {
  background: #fff;
  color: #191b1f;
  border: 1.3px solid #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #e6eaf0;
}
.cookie-banner .reject {
  background: #232325;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #251C1C;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1.3px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #22252a;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,26,30,0.89);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #232325;
  border-radius: 13px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 8px 45px rgba(28,30,33,0.19);
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #181a1e;
  font-size: 1.43rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.03rem;
}
.cookie-modal-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-modal-switch {
  width: 46px; height: 28px;
  border-radius: 18px;
  background: #e6eaf0;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal-switch .slider {
  position: absolute;
  top: 4px; left: 4px;
  height: 20px; width: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s, background 0.18s;
  box-shadow: 0 1px 4px rgba(100,100,100,0.14);
}
.cookie-modal-switch input:checked + .slider {
  left: 22px;
  background: #15171a;
}
.cookie-modal-category .always {
  background: #25a316;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: 10px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #232325;
  color: #fff;
  transition: background 0.17s;
}
.cookie-modal-actions .save {
  background: #15171a;
  color: #fff;
}
.cookie-modal-actions .save:hover {
  background: #191b1f;
}
.cookie-modal-actions .cancel {
  background: #e6eaf0;
  color: #232325;
}
.cookie-modal-actions .cancel:hover {
  background: #d7dae0;
}
.cookie-modal-content .close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: none;
  color: #15171a;
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 10px;
  transition: background 0.18s;
}
.cookie-modal-content .close:hover {
  background: #ededed;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
  .feature-grid, .offer-list, .team-profiles, .testimonial-slider, .benefits-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 950px) {
  .container { padding: 0 10px; }
  .feature-grid, .offer-list, .team-profiles, .testimonial-slider, .benefits-list {
    gap: 18px;
  }
  .section { padding: 33px 8px; }
  .cta-callout { padding: 28px 7px 28px 7px; }
}
@media (max-width: 768px) {
  .content-wrapper { gap: 24px; }
  .section, .thank-you-section {
    padding: 24px 4vw;
    margin-bottom: 44px;
    border-radius: 12px;
  }
  .hero {
    padding: 42px 0 44px 0;
    min-height: 0;
    border-radius: 0;
  }
  .feature-grid, .offer-list, .benefits-list, .team-profiles, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .offer-item, .benefit-item, .team-profiles .text-section {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  h3, .h3 { font-size: 1.05rem; }
  .section, .thank-you-section { padding: 14px 0; }
  .hero { padding: 23px 0 21px 0; }
  .container { padding: 0 3vw; }
  .testimonial-card, .feature-item, .offer-item, .benefit-item, .team-profiles .text-section {
    padding: 11px 6px 13px 8px;
  }
}

/* SHADOWS, BORDERS, & MICRO-EFFECTS */
.feature-item:hover, .offer-item:hover, .benefit-item:hover, .team-profiles .text-section:hover {
  box-shadow: 0 5px 25px rgba(66,68,70,0.08);
  border-color: #bbbde0;
  transform: translateY(-2px) scale(1.01);
  z-index: 1;
}

/* MICRO-INTERACTIONS: button/cta transitions */
.cta-primary, .cta-secondary, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.14s, color 0.14s, box-shadow 0.17s, transform 0.14s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}

/* Z-INDEX/WINDOWING LAYERS */
.mobile-menu, .cookie-modal { z-index: 1002; }
.cookie-banner { z-index: 1200; }

/* Utility classes for spacing */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* Hide visually, accessible to screen readers */
.sr-only {
  position: absolute! important;
  width: 1px! important;
  height: 1px! important;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- END OF CSS --- */
