/* ----------------------------------------------------------------------------
   Minimal CSS RESET & Normalize (no grid/columns)
---------------------------------------------------------------------------- */
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; }
*, *:before, *:after { box-sizing: inherit; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FAFAFA;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #253F5C;
  background: #FAFAFA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #253F5C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #69B599;
  outline: none;
}
ul, ol, dl { margin-left: 0; }
ul, ol { list-style-position: outside; padding-left: 1.5em; }
dl dt { font-weight: bold; margin-top: 24px; }
dl dd { margin-bottom: 16px; color: #4D5B6B; }

/* ----------------------------------------------------------------------------
   Typography
---------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #253F5C;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 24px; line-height: 1.2; }
h2 { font-size: 1.8rem; font-weight: 600; margin-bottom: 20px; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }
p, ul, ol, dl { font-size: 1rem; color: #253F5C; margin-bottom: 16px; }
strong { font-weight: 600; }
.subheadline { font-size: 1.125rem; color: #69B599; margin-bottom: 18px; margin-top: -10px; }

/* ----------------------------------------------------------------------------
   Layout Containers (Mobile First, Flex ONLY)
---------------------------------------------------------------------------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 800px;
}

.section, section, .thankyou-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
  box-shadow: none;
}

@media (max-width: 600px) {
  .section, section, .thankyou-section {
    padding: 28px 6vw;
    margin-bottom: 40px;
  }
  .content-wrapper {
    padding: 0;
  }
}

/* ----------------------------------------------------------------------------
   Header & Primary Navigation
---------------------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(30,44,67,0.04);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
  gap: 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  font-size: 0.97rem;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #253F5C;
  opacity: 0.94;
  letter-spacing: 0.02em;
  padding: 3px 2px;
  border-radius: 4px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2EDE5;
  color: #69B599;
}
.cta-btn {
  background: #69B599;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 1px 12px 0 rgba(31,41,75,0.07);
  transition: background 0.15s, box-shadow 0.2s, color 0.15s;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin-left: 20px;
}
.cta-btn.secondary {
  background: #253F5C;
  color: #fff;
}
.cta-btn:active {
  box-shadow: 0 1px 2px 0 rgba(34, 39, 50, 0.10);
}
.cta-btn:hover, .cta-btn:focus {
  background: #57a084;
  color: #fff;
  outline: none;
}

/* ----------------------------------------------------------------------------
   Mobile Nav (Hamburger)
---------------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #253F5C;
  background: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  margin-left: 8px;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(54,54,70,0.03);
  transition: background 0.2s, box-shadow 0.22s;
  z-index: 52;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F2EDE5;
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.62,.22,.35,.98);
  padding-top: 48px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #F2EDE5;
  color: #253F5C;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 4px 16px;
  z-index: 1003;
  cursor: pointer;
  transition: box-shadow 0.15s, background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #253F5C;
  color: #fff;
}
.mobile-menu nav.mobile-nav {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #253F5C;
  background: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.15s, color 0.16s;
  width: 90vw;
  text-align: center;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2EDE5;
  color: #69B599;
}

@media (min-width: 981px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
  .main-nav { display: flex !important; }
  .cta-btn { display: inline-block !important; }
}

/* Overlay darkening when mobile menu open */
.mobile-menu.open:before {
  content: '';
  display: block;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(37,63,92,0.11);
  z-index: -1;
}

/* ----------------------------------------------------------------------------
   Hero, Features, Cards & Custom Sections
---------------------------------------------------------------------------- */
.hero, .process-hero, .testimonials-hero, .faq-hero, .contact-hero, .thankyou-section {
  background: #fff;
  box-shadow: 0 2px 12px rgba(69,120,101,0.05);
  border-radius: 18px;
  margin-top: 22px;
  margin-bottom: 60px;
}
.about-preview, .services-preview, .testimonials-preview, .services-list, .why-us-section, .faq-list, .testimonials-list, .testimonials-cta, .contact-info, .contact-form-section, .faq-cta, .contact-cta, .cta-section, .faq-link, .team-section, .mission-section {
  background: #fff;
  box-shadow: 0 2px 12px rgba(69,120,101,0.06);
  border-radius: 16px;
}
@media (max-width: 600px) {
  .hero, .process-hero, .testimonials-hero, .faq-hero, .about-preview, .services-preview, .testimonials-preview, .services-list, .why-us-section, .faq-list, .testimonials-list, .testimonials-cta, .contact-info, .contact-form-section, .thankyou-section, .faq-cta, .contact-cta, .cta-section, .faq-link, .team-section, .mission-section {
    margin-top: 10px;
    margin-bottom: 32px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(69,120,101,0.10);
  }
}

.features-icons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0 0 0;
  justify-content: flex-start;
}
.features-icons-group div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.05rem;
  color: #253F5C;
  gap: 10px;
}
.features-icons-group img {
  width: 32px;
  height: 32px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
  margin-top: 14px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #F2EDE5;
  border-radius: 16px;
  box-shadow: 0 1px 9px 0 rgba(37,63,92,0.06);
  padding: 25px 22px 20px 22px;
  min-width: 240px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
}
.feature-grid li img {
  height: 40px; width: 40px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column; gap: 20px;
  }
  .feature-grid li {min-width: 0;}
}

/* ----------------------------------------------------------------------------
   Cards (Mandatory Layout Patterns)
---------------------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 9px 0 rgba(69,120,101,0.07);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  min-height: 120px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  margin-bottom: 20px;
  background: #F2EDE5;
  border-radius: 15px;
  color: #253F5C;
  box-shadow: 0 2px 8px 0 rgba(69,120,101,0.07);
  transition: box-shadow 0.23s;
  min-width: 200px;
}
.testimonial-card p {
  color: #253F5C;
  font-size: 1.15rem;
  line-height: 1.6;
}
.testimonial-card strong {
  color: #253F5C;
  font-weight: 600;
  font-size: 1.04rem;
}
.testimonial-card .stars {
  color: #69B599;
  font-size: 1.3rem;
  margin: 10px 0 -6px 0;
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 3px 17px 0 rgba(37,63,92,0.12);
}

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

/* ----------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------- */
footer {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid #F2EDE5;
  margin-top: 60px;
  color: #253F5C;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: #253F5C;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 42px; height: 42px;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #253F5C;
  opacity: 0.8;
  font-size: 0.96rem;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #69B599;
  opacity: 1;
}
.footer-contact img {
  width: 18px; height: 18px;
  vertical-align: sub;
  margin-right: 4px;
}
@media (max-width: 820px){
  footer .container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}

/* ----------------------------------------------------------------------------
   Process Steps / Lists / FAQ
---------------------------------------------------------------------------- */
.stepper, .services-list ul, .why-us-section ul, .mission-section ul, .team-section ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}
.stepper li, .services-list ul li, .why-us-section ul li, .mission-section ul li, .team-section ul li {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 18px 20px;
  color: #253F5C;
  box-shadow: 0 1px 6px rgba(37,63,92,0.03);
  font-size: 1.03rem;
  margin-bottom: 0;
}
.mission-section ul li, .team-section ul li {
  background: #fff;
  border: 1px solid #F2EDE5;
}

.faq-list dl {
  margin-bottom: 0;
}
.faq-list dt {
  font-size: 1.07rem;
  color: #253F5C;
  margin-top: 24px;
}
.faq-list dd {
  margin-bottom: 18px;
  margin-left: 0;
  color: #4D5B6B;
  font-size: 0.98rem;
}

/* ----------------------------------------------------------------------------
   Forms (Contact Section style only)
---------------------------------------------------------------------------- */
.contact-form-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.contact-form-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-form-section .cta-btn {
  width: fit-content;
  margin-top: 14px;
}

/* ----------------------------------------------------------------------------
   Animation & Transition
---------------------------------------------------------------------------- */
*, *::before, *::after {
  transition-property: background, color, box-shadow, border, opacity, transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(.43,.08,.53,1);
}

.cta-btn, .main-nav a, .footer-links a, .mobile-nav a {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.22s;
}

.testimonial-card {
  transition: box-shadow 0.23s, background 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(37,63,92,0.09);
}

/* Micro-interaction for button press */
.cta-btn:active {
  transform: scale(0.97); 
}

/* ----------------------------------------------------------------------------
   Responsive Utility
---------------------------------------------------------------------------- */
@media (max-width: 700px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .feature-grid, .content-grid { flex-direction: column !important; gap: 14px; }
  .testimonial-card, .card { padding: 16px 10px; }
}
@media (max-width: 440px) {
  .footer-brand img { width: 32px; height: 32px; }
  .footer-contact img { width: 14px; height: 14px; }
  .mobile-nav a { font-size: 1rem; padding: 12px 14px; }
}

/* ----------------------------------------------------------------------------
   Cookie Consent Banner & Modal
---------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #253F5C;
  color: #fff;
  z-index: 9998;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  box-shadow: 0 -1px 15px 0 rgba(37,63,92,0.11);
  gap: 24px;
  transition: transform 0.33s cubic-bezier(.67,.15,.7,1);
}
.cookie-banner.hide {
  transform: translateY(130%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: 10px;
}
.cookie-btn {
  background: #fff;
  color: #253F5C;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  padding: 8px 22px;
  margin-left: 2px;
  box-shadow: 0 1px 5px 0 rgba(69,120,101,0.07);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.reject {
  background: #F2EDE5;
  color: #253F5C;
}
.cookie-btn.settings {
  background: #69B599;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #253F5C;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner { padding: 18px 14px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-buttons { margin-left: 0; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,63,92,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #253F5C;
  border-radius: 15px;
  padding: 36px 28px 22px 28px;
  min-width: 300px;
  max-width: 94vw;
  box-shadow: 0 6px 28px 0 rgba(37,63,92,0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h3 {
  color: #253F5C;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-toggle {
  background: #F2EDE5;
  appearance: none;
  border-radius: 12px;
  width: 40px;
  height: 24px;
  position: relative;
  outline: none;
  border: 1px solid #dacbab;
  cursor: pointer;
  transition: background 0.2s, border 0.22s;
}
.cookie-toggle:checked {
  background: #69B599;
  border-color: #57a084;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2.3px;
  transition: transform 0.2s cubic-bezier(.6,.23,.6,1);
  box-shadow: 0 1px 4px 0 rgba(37,63,92,0.08);
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-category-row .desc {
  font-size: 0.95rem;
  color: #697283;
  margin-left: 12px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 24px;
}
.cookie-modal .cookie-btn.cancel {
  background: #F2EDE5;
  color: #253F5C;
}
.cookie-modal .cookie-btn.save {
  background: #69B599;
  color: #fff;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover {
  background: #253F5C;
  color: #fff;
}

/* ----------------------------------------------------------------------------
   Accessibility: Focus Styles
---------------------------------------------------------------------------- */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #69B599 !important;
  outline-offset: 2px;
}

/* ----------------------------------------------------------------------------
   Misc Utility / Hide
---------------------------------------------------------------------------- */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
