/* ======= CSS RESET & BASE ======= */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F5F7F9;
  color: #193251;
  line-height: 1.5;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}
a {
  color: #24915C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #193251;
  text-decoration: underline;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #193251;
  outline-offset: 2px;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #193251;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 500;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #193251;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #193251;
  margin-bottom: 8px;
  line-height: 1.7;
}
cite {
  font-size: 0.96rem;
  color: #24915C;
  letter-spacing: 0.03em;
  font-style: normal;
}
small {
  font-size: 0.94rem;
  color: #8695a2;
}

/* ======= CONTAINER & LAYOUT UTILITIES ======= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
}
.text-section {
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(25, 50, 81, 0.05);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 12px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 20px 4px;
    margin-bottom: 36px;
    border-radius: 0;
  }
}

/* ======= HEADER & NAVIGATION ======= */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E1E6EA;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #193251;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.desktop-nav a:hover {
  color: #24915C;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 99px;
  background: #24915C;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 2px 10px rgba(43,168,108,0.07);
  transition: background 0.22s, box-shadow 0.2s;
  margin-left: 18px;
  margin-right: 0;
  margin-bottom: 0;
  text-align: center;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #193251;
  color: #fff;
  box-shadow: 0 4px 18px rgba(25,50,81,0.10);
}
.cta-btn.secondary {
  background: #F5F7F9;
  color: #24915C;
  border: 1.2px solid #24915C;
  box-shadow: none;
}
.cta-btn.secondary:hover {
  background: #FFF;
  color: #193251;
  border-color: #193251;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #193251;
  background: none;
  border: none;
  align-items: center;
  padding: 0 12px;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 31;
}
.mobile-menu-toggle:focus {
  color: #24915C;
}

/* ======= MOBILE NAV ======= */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    font-size: 1rem;
    padding: 11px 24px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -2px 0 18px rgba(40,41,64,0.09);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 20px 0 20px;
  transition: transform 0.36s cubic-bezier(.4,.32,0,1), left 0s 0.36s;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open {
  left: 0;
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.45,.1,.10,1), left 0s;
}
.mobile-menu:not(.open) {
  transform: translateX(100vw);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #193251;
  background: #F5F7F9;
  border-radius: 100px;
  padding: 5px 12px;
  align-self: flex-end;
  margin-bottom: 18px;
  transition: background 0.2s;
  z-index: 102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e6f3ec;
  color: #24915C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #193251;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #F5F7F9;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #24915C;
}
@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ======= HERO & PAGE SECTIONS ======= */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  background: none;
}
section .container {
  width: 100%;
}

/* Steps/Features/Tips Section Layouts */
.feature-grid, .steps-list, .tips-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid, .steps-list, .tips-list, .team-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .steps-list, .tips-list, .team-list {
    flex-direction: column;
    align-items: stretch;
  }
}
.feature-item, .step-item, .tip-card, .team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(25,50,81,0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.feature-item:hover, .step-item:hover, .tip-card:hover, .team-member:hover {
  box-shadow: 0 8px 32px rgba(43,168,108,0.12);
  transform: translateY(-4px);
}
.feature-item img, .tip-card img, .step-item img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #F5F7F9;
  padding: 7px;
}
.service-meta {
  font-size: 1.01rem;
  color: #193251;
  background: #F5F7F9;
  padding: 4px 14px;
  border-radius: 22px;
  font-weight: 600;
}

/* ======= CARD CONTAINER ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(25,50,81,0.06);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ======= LAYOUT UTILITIES ======= */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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: stretch;
    gap: 18px;
  }
}

/* ======= TESTIMONIALS ======= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 28px;
  background: #F5F7F9;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #193251;
  box-shadow: 0 2px 12px rgba(25,50,81,0.07);
  border-left: 5px solid #24915C;
  max-width: 600px;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(36,145,92,0.13);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 12px;
    min-width: unset;
    max-width: 100%;
    border-radius: 0;
  }
}

/* ======= ACCORDIONS & LISTS ======= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(25,50,81,0.06);
  transition: box-shadow 0.16s;
}
.faq-item h3 {
  font-size: 1.15rem;
  color: #193251;
  margin-bottom: 5px;
}
.faq-item p {
  color: #193251;
  font-size: 1rem;
}

.benefits-list, .value-propositions {
  margin: 20px 0 8px 0px;
  padding: 0;
  list-style: disc inside;
}

.benefits-list li, .value-propositions li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #193251;
  font-family: 'Roboto', Arial, sans-serif;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

/* ======= TABLES ======= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(25,50,81,0.03);
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
  text-align: left;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #E1E6EA;
}
.comparison-table thead {
  background: #F5F7F9;
}
.comparison-table th {
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24915C;
  letter-spacing: 0.01em;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ======= TEAM ======= */
.team-list {
  gap: 24px;
}
.team-member h3 {
  color: #24915C;
  margin-bottom: 5px;
}
.team-member p {
  color: #193251;
  font-size: 1rem;
}

/* ======= TRUST BADGES ======= */
.trust-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin-bottom: 18px;
}
.trust-badges img {
  height: 46px;
  width: auto;
  background: #f5f7f9;
  border-radius: 86px;
  padding: 7px;
  box-shadow: 0 1px 3px rgba(25,50,81,0.06);
}

/* ======= FOOTER ======= */
footer {
  background: #FFFFFF;
  padding: 40px 0 24px 0;
  border-top: 1px solid #E1E6EA;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-logo {
  display: flex;
  align-items: center;
  height: 46px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #24915C;
  font-size: 1rem;
  margin-bottom: 2px;
  padding: 3px 0;
  font-weight: 500;
}
.footer-contact {
  font-size: 1rem;
  color: #193251;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
}
footer small {
  color: #8695a2;
  margin-top: 18px;
  flex-basis: 100%;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-logo {
    margin-bottom: 6px;
  }
}

/* ======= CONTACT INFO LIST ======= */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.contact-info-list li {
  margin-bottom: 9px;
  font-size: 1.06rem;
  color: #193251;
}

/* ======= MISSION STATEMENT ======= */
.mission-statement {
  background: #F5F7F9;
  border-radius: 8px;
  padding: 18px 18px 18px 20px;
  margin-bottom: 18px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #193251;
}
.core-values ul {
  margin-left: 18px;
  margin-bottom: 0;
}

/* ======= BUTTON ANIMATIONS ======= */
.cta-btn, .cta-btn.secondary, .mobile-menu-close {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s, transform 0.15s;
}
.cta-btn:active, .cta-btn.secondary:active, .mobile-menu-close:active {
  transform: scale(0.98);
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  box-shadow: 0 -2px 18px rgba(25,50,81,.08);
  border-top: 1px solid #e2e8f0;
  width: 100vw;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 16px;
  font-size: 1rem;
  color: #193251;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  max-width: 540px;
  margin-right: 18px;
  color: #193251;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 24px;
  font-weight: 600;
  padding: 9px 22px;
  margin: 0 0 0 0;
  border: none;
  font-size: 1rem;
  background: #24915C;
  color: #fff;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .cookie-btn.secondary {
  background: #F5F7F9;
  color: #193251;
  border: 1px solid #24915C;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #24915C;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #193251;
  color: #fff;
}

/* ======= COOKIE MODAL ======= */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(25,50,81,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  transition: opacity 0.28s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  min-width: 330px;
  max-width: 95vw;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(25,50,81,0.13);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 3001;
  animation: modalIn 0.33s cubic-bezier(.42,1.85,.56,.93);
}
@keyframes modalIn {
  0% {transform: scale(0.95) translateY(20px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #193251;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-category .req {
  color: #24915C;
  font-size: 0.96em;
  margin-left: 6px;
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  align-items: center;
}
.cookie-modal .modal-close {
  background: none;
  color: #24915C;
  border: none;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F5F7F9;
  color: #193251;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 1.07rem;
    margin-bottom: 4px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .feature-item, .step-item, .tip-card, .team-member {
    padding: 16px 10px;
    margin-bottom: 15px;
    min-width: unset;
  }
  .comparison-table th, .comparison-table td {
    padding: 8px 6px;
    font-size: 0.97rem;
  }
  .mission-statement, .faq-item {
    padding: 12px 8px;
  }
}

/* ======= UTILITY CLASSES ======= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.flex-center { align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Accessibility (visible focus ring) */
button:focus, a:focus {
  outline: 2px solid #24915C;
  outline-offset: 3px;
  z-index: 999;
}

/* ======= ANIMATIONS ======= */
.cta-btn, .cta-btn.secondary {
  transition: background 0.22s, color 0.18s, box-shadow 0.19s;
}
.cta-btn:active, .cta-btn.secondary:active {
  transform: scale(0.98);
}

/* ======= HIDE/SHOW ======= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* ======= BRANDING COLORS (FALLBACKS) ======= */
:root {
  --color-primary: #193251;
  --color-secondary: #F5F7F9;
  --color-accent: #24915C;
  --color-dark: #112137;
  --color-light: #FFFFFF;
}

/* ======= END OF CSS ======= */
