/* CSS RESET & NORMALIZE --------------------------------------------------- */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* Set box-sizing globally */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F7F5F0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #294047;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #294047;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A6B8A8;
  outline: none;
}
ul, ol {
  list-style: inside disc;
  margin: 16px 0 16px 20px;
}
li + li {
  margin-top: 8px;
}

/* TYPOGRAPHY --------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #294047;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  color: #294047;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 600;
}
.text-section p,
.text-section ul,
.text-section ol {
  margin-bottom: 12px;
}

/* LAYOUT CONTAINERS -------------------------------------------------------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  background: rgba(255,255,255, 0.8);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(166,184,168,0.09);
  padding: 36px 20px;
  margin-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX: Global patterns ------------------------------------------------- */
.card-container,
.feature-grid,
.service-list,
.step-list,
.card-grid,
.card-content,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item,
.service-item,
.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff8f6;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(234,190,200,0.09);
  padding: 28px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, background 0.25s;
}
.feature-item img,
.step-item img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}
.feature-item:hover,
.service-item:hover,
.step-item:hover {
  background: #FBFCFA;
  box-shadow: 0 6px 26px rgba(166,184,168,0.18);
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(166,184,168,0.08);
  padding: 28px 18px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(166,184,168,0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}

/* TESTIMONIALS ------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(41,64,71,0.09);
  margin-bottom: 22px;
  margin-top: 8px;
  font-size: 1.08rem;
  color: #1f2933;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card p {
  font-style: italic;
  color: #294047;
  margin-bottom: 0;
  margin-top: 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  color: #294047;
}
.testimonial-meta img {
  vertical-align: bottom;
  height: 16px;
  margin-right: 3px;
}
.testimonial-card:hover {
  background: #f9fbfa;
  box-shadow: 0 6px 30px rgba(166,184,168,0.15);
}

/* FAQ ACCORDION ------------------------------------------------------------ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #FFF8F6;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(166,184,168,0.08);
  padding: 22px 18px;
  margin-bottom: 8px;
  transition: box-shadow 0.18s;
  cursor: pointer;
}
.faq-item h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #294047;
}
.faq-item p {
  font-size: 1rem;
  color: #40605F;
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 8px 28px rgba(166,184,168,0.18);
  background: #fbfcfa;
}

/* CTA BUTTONS -------------------------------------------------------------- */
.cta-btn {
  background: linear-gradient(90deg,#a6b8a8 0%, #e7ede7 100%);
  color: #294047;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 34px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(166,184,168,0.09);
  outline: none;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 8px;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #294047;
  color: #f7f5f0;
  box-shadow: 0 4px 18px rgba(166,184,168, 0.13);
  transform: translateY(-2px) scale(1.02);
}

/* HEADER & NAV ------------------------------------------------------------- */
header {
  background: #F7F5F0;
  box-shadow: 0 2px 18px rgba(166,184,168,0.09);
  z-index: 10;
  position: relative;
}
header .container {
  padding: 16px 18px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  color: #294047;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 2px;
  transition: color 0.18s, border 0.18s;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
header nav a:hover, header nav a:focus {
  color: #A6B8A8;
  border-bottom: 2px solid #A6B8A8;
}
.cta-btn {
  margin-left: 18px;
}

/* MOBILE NAV TOGGLE -------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #A6B8A8;
  color: #294047;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  padding: 5px 13px;
  margin-right: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 33;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #294047;
  color: #f7f5f0;
  box-shadow: 0 3px 11px rgba(166,184,168,0.19);
}

/* MOBILE MENU OVERLAY ------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247,245,240,0.98);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.58,0.01,0.22,1);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 24px 16px 30px;
  box-shadow: 0 2px 24px rgba(166,184,168,0.19);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #294047;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  z-index: 61;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A6B8A8;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #294047;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 8px 2px;
  transition: color 0.18s, background 0.17s;
  border-radius: 12px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #a6b8a8;
  color: #f7f5f0;
}

/* SECTIONS & SPACING ------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
section:last-child {
  margin-bottom: 0;
}
.text-section {
  margin-bottom: 18px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 8px;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: #f7f5f0;
  padding: 40px 0 12px 0;
  border-top: 1.5px solid #e6ede8;
  font-size: 0.99rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #A6B8A8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #294047;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  height: 20px;
}
.copyright {
  color: #b5bbc0;
  font-size: 0.98rem;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER ---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #a6b8a8;
  color: #294047;
  z-index: 1000;
  padding: 16px 24px 16px 24px;
  box-shadow: 0 -4px 18px rgba(166,184,168,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(0.55,0.01,0.22,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner-message {
  flex: 1;
}
.cookie-btn {
  background: #f7f5f0;
  color: #294047;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  font-size: 1.02rem;
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 0;
  transition: background 0.17s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 1px 4px rgba(41,64,71,0.10);
  cursor: pointer;
  outline: none;
}
.cookie-btn.primary {
  background: #294047;
  color: #f7f5f0;
  font-weight: 600;
}
.cookie-btn.reject {
  background: #f1e2e4;
  color: #294047;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A6B8A8;
  color: #f7f5f0;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #A6B8A8;
  color: #294047;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e3e3e3;
  color: #294047;
}

/* COOKIE BANNER MODAL ------------------------------------------------------ */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(51,64,61,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #F7F5F0;
  border-radius: 28px;
  box-shadow: 0 8px 54px rgba(41,64,71,0.16);
  padding: 36px 22px 32px 22px;
  width: 95vw;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #A6B8A8;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #294047;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #e6ede8;
  font-size: 1.08rem;
}
.cookie-category:last-child {
  border-bottom: 0;
}
.cookie-toggle {
  width: 38px;
  height: 18px;
  background: #e5eeea;
  border-radius: 20px;
  position: relative;
  margin-left: 8px;
  transition: background 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle.enabled {
  background: #A6B8A8;
}
.cookie-toggle.disabled {
  background: #e1e1e1;
}
.cookie-toggle-switch {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(41,64,71,0.07);
  transition: left 0.2s;
}
.cookie-toggle.enabled .cookie-toggle-switch {
  left: 22px;
}
.cookie-toggle.disabled .cookie-toggle-switch {
  left: 2px;
}
.cookie-category.always label {
  color: #b3b5c1;
  font-size: 1rem;
  pointer-events: none;
}

/* CARD/ELEMENT GAPS & SPACING ---------------------------------------------- */
.card, .feature-item, .service-item, .step-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .feature-grid, .service-list, .step-list {
  gap: 24px;
}
.testimonial-card {
  margin-bottom: 22px;
  gap: 20px;
  padding: 20px 28px;
  align-items: center;
}
.feature-item {
  gap: 15px;
  align-items: flex-start;
}
.text-image-section {
  gap: 30px;
  align-items: center;
}

/* SERVICE HINTS ------------------------------------------------------------ */
.service-hint {
  margin-top: 22px;
  background: #f9fbfa;
  border-radius: 12px;
  padding: 16px 16px 12px 16px;
  box-shadow: 0 1px 8px rgba(166,184,168,0.07);
  font-size: 1.04rem;
  color: #294047;
}

/* FORM ELEMENTS (Should future forms be added) ----------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  border: 1px solid #A6B8A8;
  background: #f7f5f0;
  padding: 10px 13px;
  font-size: 1rem;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.15s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #294047;
  background: #fff;
  box-shadow: 0 0 0 2px #a6b8a871;
}

/* MEDIA QUERIES: RESPONSIVE DESIGN ----------------------------------------- */
@media (max-width: 968px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 24px 10px;
  }
  .card-container, .content-grid, .feature-grid, .service-list, .step-list {
    gap: 18px;
  }
  .feature-item, .service-item, .step-item {
    min-width: 170px;
    padding: 20px 10px;
  }
  section {
    padding: 30px 0px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  header nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  section {
    margin-bottom: 32px;
    padding: 22px 0px;
  }
  .content-wrapper {
    padding: 16px 6px;
    margin-bottom: 16px;
  }
  .card-container, .content-grid, .feature-grid, .service-list, .step-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item, .step-item {
    width: 100%;
    min-width: 0;
  }
  .testimonial-card {
    padding: 15px 8px;
    gap: 12px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 3px;
  }
  h1 {
    font-size: 1.55rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 12px;
  }
  h3, h4, h5, h6 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .card, .feature-item, .service-item, .step-item {
    padding: 10px 5px;
  }
  .testimonial-card {
    padding: 8px 3px;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS ----------------------------------------- */
.card, .feature-item, .service-item, .step-item, .testimonial-card, .faq-item, .cta-btn, .cookie-btn {
  transition: box-shadow 0.18s, background 0.17s, color 0.15s, transform 0.13s;
}
.cta-btn:active, .card:active, .feature-item:active, .service-item:active, .step-item:active {
  transform: scale(0.98);
}

/* UTILITY CLASSES ---------------------------------------------------------- */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.gap-16 {
  gap: 16px;
}

/* SOFT PASTEL BACKGROUNDS -------------------------------------------------- */
.bg-light-accent {
  background: #E7EDE7;
}
.bg-accent {
  background: #A6B8A8;
  color: #fff;
}
.bg-primary {
  background: #294047;
  color: #fff;
}
.bg-pastel-pink {
  background: #fbf6fa;
}
.bg-white {
  background: #fff;
}

/* Hide visually but allow screen readers */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
