/* ----------------------------------------
   CSS RESET & BASE STYLES
---------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #fff;
  color: #15171B;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #283A52;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #34B679;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
strong, b {
  font-weight: 600;
}
button {
  font-family: inherit;
  font-weight: 500;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

/* ----------------------------------------
   LAYOUT CONTAINERS & SPACING
---------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40,58,82,0.06), 0 1.5px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main > section:not(.hero):not(.cta) {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fafbfc;
  box-shadow: 0 2px 12px rgba(40,58,82,0.08);
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ----------------------------------------
   TYPOGRAPHY & HEADINGS
---------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.22;
  margin-bottom: 8px;
}
h4, h5 {
  font-size: 1.1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
}
p, li {
  font-size: 1rem;
  color: #222326;
}

/* ----------------------------------------
   BUTTONS & LINKS
---------------------------------------- */
.btn-primary {
  background: #15171B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 2px 7px rgba(40,58,82,0.10);
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  display: inline-block;
  margin-top: 6px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #283A52;
  color: #fff;
  box-shadow: 0 4px 18px rgba(40,58,82,0.18);
  text-decoration: none;
}
.btn-secondary {
  background: #fff;
  color: #283A52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1.5px solid #283A52;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 6px;
  box-shadow: 0 1.5px 5px rgba(40,58,82,0.07);
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #fff;
  background: #283A52;
  border-color: #15171B;
  box-shadow: 0 4px 14px rgba(40,58,82,0.16);
}

/* ----------------------------------------
   HEADER + NAVIGATION
---------------------------------------- */
header {
  width: 100%;
  background: #15171B;
  box-shadow: 0 2px 16px rgba(40,58,82,0.10);
  padding: 0;
  margin-bottom: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  justify-content: space-between;
}
.logo img {
  height: 42px;
  width: auto;
  margin-right: 8px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0 4px;
  transition: color 0.18s;
}
nav a:hover, nav a:focus {
  color: #34B679;
  text-decoration: none;
}
header .btn-primary {
  margin-left: 16px;
  font-size: 1rem;
  padding: 9px 24px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  margin-left: 20px;
  border-radius: 8px;
  padding: 4px 11px;
  transition: background 0.23s, color 0.23s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #22262C;
  color: #34B679;
}

@media (max-width: 950px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------------
   MOBILE MENU OFFCANVAS
---------------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,27,0.96);
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.7,.2,.23,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  color: #fff;
  background: none;
  font-size: 2.6rem;
  font-weight: 300;
  margin: 26px 30px 10px 16px;
  align-self: flex-end;
  border-radius: 8px;
  padding: 2px 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22262C;
  color: #34B679;
}
.mobile-nav {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
  display: block;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22262C;
  color: #34B679;
}

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

/* ----------------------------------------
   HERO SECTIONS & CTA
---------------------------------------- */
.hero {
  background: #fff;
  padding: 54px 0 44px 0;
}
.hero h1 {
  color: #15171B;
  font-size: 2.7rem;
  font-weight: 700;
}
.hero p {
  color: #222326;
  font-size: 1.2rem;
}
.hero .btn-primary {
  margin-top: 24px;
}
@media (max-width: 900px) {
  .hero {
    padding: 32px 0 26px 0;
  }
  .hero h1 {
    font-size: 2.0rem;
  }
}
.cta {
  background: #f6f7fa;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 44px 20px;
  box-shadow: 0 2px 8px rgba(34,34,34,0.06);
}
.cta h2 {
  color: #15171B;
  margin-bottom: 16px;
  font-weight: 700;
}
.cta .btn-primary {
  margin-top: 12px;
}

/* ----------------------------------------
   SERVICE/WORKSHOP CARDS & LISTS
---------------------------------------- */
.service-cards, .workshop-list, .tip-cards, .service-list, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.service-card, .workshop-card, .tip-card, .step-list > div, .service-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(40,58,82,0.07), 0 1px 4px rgba(0,0,0,0.03);
  padding: 28px 20px 20px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.service-card:hover, .workshop-card:hover, .tip-card:hover {
  box-shadow: 0 7px 24px rgba(40,58,82,0.14);
  transform: translateY(-4px) scale(1.027);
}
.service-card h3, .workshop-card h3 {
  color: #15171B;
  font-size: 1.2rem;
}
.service-card div, .workshop-card span {
  color: #181826;
  font-weight: 500;
  margin-top: 4px;
}
.step-list img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .service-cards, .workshop-list, .tip-cards, .service-list, .step-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ----------------------------------------
   TESTIMONIALS
---------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6f7fa;
  color: #232326;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(40,58,82,0.06);
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #232326;
  font-style: italic;
}
.testimonial-card strong {
  color: #15171B;
  font-size: 1rem;
  margin-left: 14px;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 9px 22px rgba(40,58,82,0.12);
  transform: translateY(-2px) scale(1.02);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-summary strong {
  color: #15171B;
}
.rating-summary span {
  color: #444;
  margin-left: 8px;
  font-size: 0.97rem;
}

/* ----------------------------------------
   FAQ ACCORDION
---------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.faq-item {
  background: #fafbfc;
  border-radius: 11px;
  box-shadow: 0 1.5px 8px rgba(40,58,82,0.08);
  padding: 18px 22px 14px 22px;
  transition: box-shadow 0.2s, border 0.22s;
}
.faq-item h3 {
  color: #15171B;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 7px;
  font-family: 'Montserrat', sans-serif;
}
.faq-item p {
  color: #202124;
  font-size: 1rem;
}
.faq-item.open {
  box-shadow: 0 5px 20px rgba(40,58,82,0.14);
  border-left: 4px solid #283A52;
}

/* ----------------------------------------
   ARTICLE/LEGAL SECTIONS
---------------------------------------- */
.legal-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(40,58,82,0.06);
  padding: 36px 24px 24px 24px;
  color: #15171B;
}
.legal-section h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
.legal-section h2 {
  margin-top: 22px;
  margin-bottom: 9px;
}
.legal-section ul {
  padding-left: 24px;
}
.legal-section li {
  margin-bottom: 4px;
}

/* ----------------------------------------
   FOOTER
---------------------------------------- */
footer {
  width: 100%;
  background: #15171B;
  color: #fff;
  padding: 0px 0 0px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding-top: 36px;
  padding-bottom: 24px;
  border-top: 1.5px solid #23272f;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 500;
}
.brand-info img {
  width: 38px;
  height: auto;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-menu a {
  color: #f0f0f0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #34B679;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.99rem;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
}
.social-icons img {
  width: 28px;
  height: 28px;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    padding-top: 26px;
    padding-bottom: 16px;
  }
  .footer-menu {
    flex-direction: row;
    gap: 16px;
  }
}

/* ----------------------------------------
   EXTRA CONTENT BLOCKS & SPECIAL FLEX
---------------------------------------- */
.schedule-overview, .quick-facts, .article-highlights, .signup-benefits, .signup-form, .map-embed, .next-steps {
  margin-top: 18px;
  margin-bottom: 18px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 1.5px 7px rgba(40,58,82,0.05);
  font-size: 1rem;
  color: #202124;
}
.article-highlights ul, .signup-benefits ul {
  margin-top: 8px;
  padding-left: 20px;
}
.next-steps h2 {
  font-size: 1.11rem;
  margin-bottom: 10px;
}
.map-embed p {
  font-style: italic;
  color: #283A52;
}

/* ----------------------------------------
   RESPONSIVE FLEX & MOBILE
---------------------------------------- */
@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 26px 0 14px 0;
  }
  .section, .cta {
    padding: 30px 6px;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.09rem;
  }
}

/* ----------------------------------------
   MICRO-INTERACTIONS & ANIMATIONS
---------------------------------------- */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .service-card, .workshop-card, .tip-card, .testimonial-card {
  transition: background 0.19s, color 0.18s, box-shadow 0.22s, transform 0.18s;
}
.faq-item {
  cursor: pointer;
}

/* ----------------------------------------
   COOKIE CONSENT BANNER (MANDATORY)
---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #15171B;
  color: #fff;
  padding: 22px 24px 18px 24px;
  box-shadow: 0 -2px 22px rgba(40,58,82,0.14);
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(.9,.3,.2,1);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 20px;
  margin: 0;
}
.cookie-accept {
  background: #34B679;
  color: #fff;
  border: none;
  transition: background 0.17s, color 0.17s;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #1D8557;
}
.cookie-reject {
  background: #efefef;
  color: #15171B;
  margin-left: 3px;
  border: none;
  transition: background 0.17s, color 0.17s;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f3f3f3;
  color: #283A52;
}
.cookie-settings {
  background: #23272F;
  color: #fff;
  margin-left: 3px;
  border: none;
  transition: background 0.15s, color 0.17s;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #283A52;
  color: #34B679;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 22px 10px 16px 14px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
    display: flex;
    gap: 13px;
    align-items: stretch;
    margin-top: 4px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 11000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,33,41,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.34s cubic-bezier(.7,.3,.35,1);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #15171B;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(40,58,82,0.13);
  max-width: 420px;
  min-width: 260px;
  width: 96%;
  padding: 30px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.33s cubic-bezier(.6,0,.4,1);
}
@keyframes fadeInModal {
  from { transform: translateY(30px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 5px;
}
.cookie-category label {
  font-weight: 500;
  color: #1A1A1A;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #283A52;
}
.cookie-category .always-on {
  font-size: 0.95rem;
  color: #34B679;
  font-weight: 600;
  margin-left: 8px;
}
.cookie-modal .cookie-action-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject, .cookie-modal .cookie-settings {
  min-width: 0;
  font-size: 1rem;
  padding: 7px 15px;
}

/* ----------------------------------------
   DARK/LIGHT ACCESSIBILITY & MONOCHROME
---------------------------------------- */
body, .section, .faq-item, .service-card, .workshop-card, .tip-card, .card, .legal-section, .cookie-modal {
  background: #fff;
}
.cta, .testimonial-card, .quick-facts, .article-highlights, .signup-benefits, .signup-form, .next-steps, .schedule-overview {
  background: #f6f7fa;
}
footer, header {
  background: #15171B;
}

/* Dramatic Monochrome Contrast Accents */
h1, h2, h3, h4, h5, .btn-primary, .btn-secondary, nav a, .mobile-menu-toggle, .mobile-nav a, .cookie-modal h2 {
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}
hr {
  border: 0;
  border-bottom: 1px solid #d2d6de;
  margin: 40px 0 28px 0;
}

/* ----------------------------------------
   ACCESSIBILITY COLORS (MONOCHROME-INSPIRED)
---------------------------------------- */
::selection {
  background: #283A52;
  color: #fff;
}

/* ----------------------------------------
   ENSURE NO OVERLAPPING (SPACING RULES)
---------------------------------------- */
.section, .content-wrapper, .service-card, .workshop-card, .tip-card, .testimonial-card, .faq-item, .quick-facts, .article-highlights, .signup-benefits, .signup-form, .map-embed, .next-steps {
  margin-bottom: 20px;
}
.service-card + .service-card, .workshop-card + .workshop-card, .tip-card + .tip-card, .testimonial-card + .testimonial-card {
  margin-left: 0;
}
.card-container, .service-cards, .workshop-list, .tip-cards, .content-grid, .step-list, .faq-accordion {
  gap: 20px;
}

/* ----------------------------------------
   FORMS (BASIC STYLE)
---------------------------------------- */
input, textarea {
  border: 1.5px solid #283A52;
  border-radius: 5px;
  padding: 11px 10px;
  font-size: 1.03rem;
  font-family: inherit;
  transition: border 0.16s;
  color: #232326;
  background: #fff;
}
input:focus, textarea:focus {
  border: 1.5px solid #34B679;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* ----------------------------------------
   UTILITY CLASSES
---------------------------------------- */
.d-none { display: none !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* ----------------------------------------
   PRINT &  ACCESSIBILITY
---------------------------------------- */
@media print {
  *, *::before, *::after {
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}

/* ----------------------------------------
   THEME: SOPHISTICATED MONOCHROME (APPLIED!)
---------------------------------------- */
/* Black (#15171B, #181826), Deep Navy (#283A52), White, Light Grays (for monochrome contrast), with brand green accent for interactivity */
