/* ================================
   CSS RESET & BASE STYLES
   ================================ */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #0C3753;
  background: #F0EDEE;
  font-size: 16px;
  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: #0C3753;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #75C6A5;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================================
   BRAND FONTS FOR HEADINGS
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #0C3753;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
.subheadline {
  font-size: 1.125rem;
  color: #386b85;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .subheadline { font-size: 1rem; }
}

/* ================================
   LAYOUT & SPACING
   ================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(12, 55, 83, 0.06);
}
@media (max-width: 600px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* Alignment: Cards & Grids */
.card-container, .feature-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card, .feature-grid > div {
  background: #F0EDEE;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(117, 198, 165, 0.13), 0 1.5px 5px rgba(12, 55, 83, 0.05);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(117, 198, 165, 0.18), 0 3px 12px rgba(12, 55, 83, 0.10);
  transform: translateY(-4px) scale(1.015);
}

.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;
    align-items: flex-start;
    gap: 20px;
  }
  .card-container, .feature-grid, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.ease-in {
  transition: all 0.25s cubic-bezier(.77,.2,.05,1.0);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(12, 55, 83, 0.07);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 22;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #F0EDEE;
  color: #75C6A5;
}
header .btn-primary {
  margin-left: 20px;
}
header img {
  height: 36px;
  width: auto;
  border-radius: 10px;
  background: transparent;
}

@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header nav, header .btn-primary {
    display: none;
  }
}


/* ================================
   MOBILE MENU
   ================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 22px;
  z-index: 120;
  background: #75C6A5;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: none;
  box-shadow: 0 3px 12px rgba(117,198,165,0.11);
  cursor: pointer;
  transition: background 0.2s, transform 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #0C3753;
  color: #fff;
  outline: none;
  transform: scale(1.09);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 1px 0 32px rgba(12,55,83,0.09);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #0C3753;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  top: 18px; right: 26px;
  cursor: pointer;
  z-index: 160;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F0EDEE;
  color: #75C6A5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 26px;
  align-items: flex-start;
  padding: 0 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #0C3753;
  padding: 12px 8px;
  border-radius: 13px;
  min-width: 120px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F0EDEE;
  color: #75C6A5;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
  background: #75C6A5;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 13px 28px;
  border-radius: 22px;
  border: none;
  box-shadow: 0 3px 16px rgba(117,198,165,0.15);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, transform 0.17s, box-shadow 0.18s;
  display: inline-block;
}
.btn-primary:focus, .btn-primary:hover {
  background: #0C3753;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(12, 55, 83, 0.13);
}

.btn-secondary {
  background: #0C3753;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.12s;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #386b85;
  color: #F0EDEE;
}

/* Tertiary button (for cookie settings) */
.btn-tertiary {
  background: #F0EDEE;
  color: #0C3753;
  padding: 10px 20px;
  border-radius: 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 1px solid #75C6A5;
  transition: background 0.18s, color 0.10s, border 0.16s;
  cursor: pointer;
}
.btn-tertiary:focus, .btn-tertiary:hover {
  background: #75C6A5;
  color: #fff;
  border: 1px solid #0C3753;
}

/* ================================
   SECTIONS & FEATURE GRIDS
   ================================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature-grid > div {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  border-radius: 18px;
  background: #F0EDEE;
  box-shadow: 0 2px 10px rgba(12, 55, 83, 0.06);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-grid > div img {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 6px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px rgba(117,198,165,0.10);
  transform: translateY(-3px) scale(1.04);
}

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

@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div { max-width: 100%; width: 100%; }
}

/* ================================
   TESTIMONIAL CARDS
   ================================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 18px 26px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(117, 198, 165, 0.09), 0 1.5px 4px rgba(12,55,83,0.04);
  min-width: 220px;
  transition: box-shadow 0.18s;
  color: #0C3753;
}
.testimonial-card strong {
  font-size: 1.11rem;
  color: #0C3753;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 600;
}
.testimonial-card span {
  font-size: 1rem;
  color: #386b85;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span:last-child {
  color: #F6A21D;
  /* orange tone for stars */
  letter-spacing: 2.5px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 20px rgba(117,198,165,0.15);
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 16px rgba(12,55,83,0.07);
  padding: 36px 0 30px 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 0 1 120px;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 48px;
  width: auto;
}
.footer-links {
  flex: 0 1 260px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  color: #0C3753;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-links a:hover, .footer-links a:focus {
  color: #75C6A5;
}
.footer-contact {
  flex: 1 1 280px;
  line-height: 1.5;
  color: #0C3753;
}
.footer-contact a {
  color: #0C3753;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  width: 25px; height: 25px;
  filter: drop-shadow(0 0 1.5px #75C6A5);
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 0 13px #75C6A5);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer .footer-social {
    margin-bottom: 10px;
  }
  footer .footer-links { flex-direction: row; gap: 22px; flex-wrap: wrap;}
}
@media (max-width: 600px) {
  footer {
    padding: 28px 0 16px 0;
    margin-top: 24px;
  }
}

/* ================================
   FORMS (IF ANY)
   ================================ */
input, textarea, select {
  border-radius: 14px;
  border: 1.5px solid #75C6A5;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  background: #fff;
  transition: border 0.18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #0C3753;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #0C3753;
  margin-bottom: 6px;
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  background: #fff;
  color: #0C3753;
  box-shadow: 0 -8px 18px rgba(117,198,165,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 22px 18px 16px 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  width: 100%;
  max-width: 100vw;
  animation: cookieFadeIn 0.5s cubic-bezier(.77,.2,.05,1.0) 1;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 15px;
  margin-top: 6px;
  flex-wrap: wrap;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(12,55,83,0.18);
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.32s cubic-bezier(.77,.2,.05,1.0) 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 44px rgba(12,55,83,0.08);
  padding: 30px 32px 22px 32px;
  max-width: 430px;
  min-width: 0;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #0C3753;
  animation: cookieAnimPop .39s cubic-bezier(.77,.2,.05,1.0) 1;
}
@keyframes cookieAnimPop {
  from { opacity: 0; transform: scale(0.85) translateY(33px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: #75C6A5;
  width: 18px;
  height: 18px;
}
.cookie-category .essential {
  font-weight: 600;
  color: #0C3753;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 12px;
  margin-top: 11px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cookie-modal { padding: 14px 7vw 13px 7vw; }
  .cookie-consent-banner { padding: 12px 4vw 9px 4vw; }
}

/* ================================
   MISC: Call To Action + Utility
   ================================ */
.cta-section, .call-to-action {
  background: #75C6A5;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 23px rgba(117,198,165,0.07);
  text-align: center;
  padding: 36px 20px;
  margin-bottom: 60px;
}
.cta-section h2, .call-to-action h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-section p, .call-to-action p {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #fff;
}

/* ================================
   MISC UTILITY CLASSES
   ================================ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.rounded-xl { border-radius: 20px !important; }
.text-center { text-align: center !important; }

/* ================================
   DARK TEXT ON LIGHT BG FOR TESTIMONIALS & REVIEWS
   ================================ */
.testimonial-card, .review-card {
  background: #fff;
  color: #0C3753;
  box-shadow: 0 2px 13px rgba(117,198,165,0.09);
}

/* ================================
   VISUAL HIERARCHY & SHADOWS
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(117,198,165,0.04);
}
@media (max-width: 600px) {
  section {
    margin-bottom: 36px;
    padding: 20px 8px;
  }
}

/* ================================
   COLORED LIST MARKERS
   ================================ */
ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 9px;
  line-height: 1.6;
}
ul li:before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 10px;
  background: #75C6A5;
  border-radius: 50%;
  display: inline-block;
}

/* ================================
   SCROLLBAR
   ================================ */
::-webkit-scrollbar {
  width: 10px;
  background: #F0EDEE;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #75C6A5;
  border-radius: 7px;
}

/* ================================
   ANIMATIONS (micro-interactions)
   ================================ */
.btn-primary, .btn-secondary, .btn-tertiary, .cookie-modal, .mobile-menu, .mobile-menu-toggle, .feature-grid > div, .card {
  transition: box-shadow 0.18s, background 0.18s, color 0.15s, transform 0.15s;
}

/* ================================
   PRINT STYLES (OPTIONAL MINIMAL)
   ================================ */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section, .section { box-shadow: none !important; background: #fff !important; }
}
