/* 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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F3EE;
  color: #2D4739;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #8C5A17;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #A3783C;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin: 0;
  padding-left: 32px;
}
h1, h2, h3, h4, h5, h6 {
  color: #2D4739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

p, li {
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  color: #2D4739;
  font-weight: 600;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER LAYOUT */
header {
  background: #FFF6F3;
  box-shadow: 0 2px 8px rgba(163,120,60, 0.07);
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-height: 64px;
}
header img {
  max-height: 44px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #2D4739;
  padding: 6px 12px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E6E1EE;
  color: #8C5A17;
}
.cta-primary {
  background: linear-gradient(90deg,#ffd6d6 0%,#f6f3ee 51%,#d2e6e1 100%);
  color: #2D4739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 28px;
  border: none;
  font-size: 1.08rem;
  margin-left: auto;
  box-shadow: 0 2px 6px rgba(163,120,60,.08);
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  outline: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#eedbe1 0%,#e5e3e6 48%,#bde6da 100%);
  color: #8C5A17;
  box-shadow: 0 4px 16px rgba(163,120,60,.13);
}
.cta-secondary {
  background: #EDECFB;
  color: #2D4739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  margin-top: 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(173,190,237, 0.08);
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  outline: none;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #DBF6F1;
  color: #8C5A17;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2D4739;
  margin-left: 12px;
  position: relative;
  z-index: 1101;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 100px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e6e1ee;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(252,251,250,0.98);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0.2, 0.2, 1);
  z-index: 1200;
  box-shadow: -4px 0 24px rgba(45,71,57,0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #2D4739;
  position: absolute;
  top: 16px;
  right: 24px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 100px;
  z-index: 2000;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #eedbe1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding-top: 70px;
  margin-left: 24px;
}
.mobile-nav a {
  color: #2D4739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 14px 0;
  width: 260px;
  border-radius: 18px;
  font-weight: 600;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #DBF6F1;
  color: #8C5A17;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(97deg,#f6f3ee 40%,#f7eefa 100%);
  padding: 0 0 40px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 32px;
  gap: 12px;
}
.hero h1 {
  color: #2D4739;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero h2 {
  color: #A3783C;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero p {
  max-width: 700px;
  color: #2D4739;
  margin-bottom: 24px;
}

/* SECTION BASIC LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-section {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 32px rgba(163,120,60, 0.04);
  padding: 24px 24px;
  margin-bottom: 32px;
}

/* FEATURE GRID (CARDS/ICONS) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 220px;
  background: #F7F4FF;
  border-radius: 21px;
  box-shadow: 0 2px 20px rgba(118,178,184, 0.12);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.16s;
  border: 1.7px solid #E1E9E7;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 4px 22px #bde6dad1;
  transform: translateY(-3px) scale(1.025);
}
.feature-icons {
  margin: 18px 0 6px 0;
  color: #8C5A17;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF8F6;
  border-radius: 22px;
  box-shadow: 0 1.5px 12px rgba(141,226,220,0.13);
  padding: 24px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px #c9bdec6c;
  transform: translateY(-3px) scale(1.024);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F6FBFF;
  border-radius: 24px;
  box-shadow: 0 1.5px 12px rgba(178,200,246,0.12);
  border: 1.3px solid #E1EDF2;
  min-width: 240px;
  max-width: 470px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 0;
  color: #25362b;
}
.testimonial-card span {
  color: #8C5A17;
  font-size: 0.96rem;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 22px rgba(141,226,220,0.17);
  transform: translateY(-2px) scale(1.01);
}

.section ul, .content-wrapper ul {
  margin-top: 5px;
  margin-bottom: 17px;
  padding-left: 20px;
  line-height: 1.9;
}

/* TEAM LIST */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.team-list > div {
  flex: 1 1 200px;
  background: #E6E1EE;
  padding: 16px 17px;
  border-radius: 19px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2D4739;
  box-shadow: 0 2px 12px rgba(87,119,255,.06);
}

/* FOOTER */
footer {
  background: #FFF5F9;
  border-top: 3px solid #FFF6F3;
  margin-top: 64px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact a {
  color: #8C5A17;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 0.99rem;
  margin-top: 7px;
}
.footer-nav a {
  color: #2D4739;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 0;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #d3f8e6;
  color: #8C5A17;
}

/* THANK YOU PAGE */
.thank-you {
  background: linear-gradient(99deg, #fff4fe 20%, #dff5eb 95%);
  padding: 80px 0 120px 0;
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you h1 {
  color: #2D4739;
}

/* CONTACT INSTRUCTIONS */
.contact-instructions {
  background: #F7F4FF;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 0.98rem;
  margin: 20px 0 4px 0;
  color: #2D4739;
  box-shadow: 0 1.5px 12px rgba(111,171,177, 0.06);
}
.contact-instructions strong {
  color: #8C5A17;
  font-size: 1.05rem;
}

/* COOKIE CONSENT BANNER */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #F6F3EE;
  color: #2D4739;
  box-shadow: 0 -2px 20px rgba(173,190,237, 0.12);
  z-index: 10500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px 20px 21px 20px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.5,.2,.1,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  margin: 0 0 0 0;
  flex: 1 1 240px;
  color: #2D4739;
}
.cookie-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 21px;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin: 0 0 0 0;
  box-shadow: 0 1.5px 8px rgba(186,184,236, 0.08);
  transition: background 0.16s, color 0.14s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #e3ffe5;
  color: #2D4739;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #9cfcc2;
}
.cookie-banner .reject {
  background: #ffeaea;
  color: #8C5A17;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffdbe1;
  color: #A3783C;
}
.cookie-banner .settings {
  background: #E6E1EE;
  color: #2D4739;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #DBF6F1;
  color: #8C5A17;
}

/* COOKIE MODAL DIALOG */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,42,51,0.32);
  z-index: 10600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #FFF9F5;
  border-radius: 24px;
  max-width: 450px;
  width: 95vw;
  box-shadow: 0 8px 40px rgba(141,226,220,0.14);
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: modalPopup 0.32s cubic-bezier(.45,.16,.26,1);
}
@keyframes modalPopup {
  0% { transform: scale(0.88) translateY(80px); opacity: .2; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: #2D4739;
  font-size: 1.25rem;
  text-align: center;
}
.cookie-modal ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2D4739;
}
.cookie-category label {
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-info {
  font-size: 0.92rem;
  color: #484444;
  margin-top: 4px;
  margin-bottom: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #2D4739;
  cursor: pointer;
  border-radius: 16px;
  transition: background 0.16s;
}
.cookie-modal .close-modal:focus,
.cookie-modal .close-modal:hover {
  background: #e6e1ee;
}
.cookie-modal .accept, .cookie-modal .reject {
  margin-top: 10px;
  width: 100%;
}

/* FORM ELEMENTS (future-proof) */
input, textarea, select {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2D4739;
  border-radius: 14px;
  border: 1.2px solid #dbdadc;
  background: #f6f3ee;
  padding: 10px 16px;
  box-shadow: none;
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #a3783c;
}

/* SPACING & CARD UTILITY */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* MEDIA QUERIES: RESPONSIVE & MOBILE FIRST */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-content {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-grid > div,
  .team-list > div {
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  html { font-size: 96%; }
  header .container {
    gap: 7px;
    flex-wrap: wrap;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    padding: 8px 17px;
    margin-left: 7px;
    font-size: 1rem;
  }
  .footer-content { flex-direction: column; gap: 20px; text-align: left; }
  .feature-grid, .team-list {
    flex-direction: column;
  }
  .feature-grid > div {
    width: 100%;
    min-width: unset;
  }
  .content-wrapper {
    gap: 14px;
  }
  .thank-you {
    padding: 50px 0 60px 0;
  }
  .section {
    margin-bottom: 36px; padding: 22px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 150px;
    max-width: 98vw;
    padding: 15px 9px;
  }
}
@media (max-width: 480px) {
  .container { padding-left: 1.5vw; padding-right: 1.5vw; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.18rem; }
  .hero h1 { font-size: 1.43rem; }
}
/* ACCESSIBILITY FOCUS VISIBLE */
a:focus, button:focus, input:focus, .cta-primary:focus {
  outline: 2px solid #8C5A17;
  outline-offset: 2px;
  z-index: 10;
}

/* SCROLLBAR PASTEL STYLING */
::-webkit-scrollbar {
  width: 8px;
  background: #f6f3ee;
}
::-webkit-scrollbar-thumb {
  background: #DBF6F1;
  border-radius: 6px;
}

/* SOFT PASTEL ACCENTS */
body, .section, .text-section, .card, .content-wrapper {
  background: #F6F3EE;
}

/* UTILITIES */
.mt-2 { margin-top: 18px; }
.mb-2 { margin-bottom: 18px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* TRANSITIONS FOR MICRO-INTERACTIONS */
button, .cta-primary, .cta-secondary, .feature-grid > div, .card, .testimonial-card {
  transition: background 0.15s, color 0.15s, box-shadow 0.17s, transform 0.14s;
}

/* NO ABSOLUTE CONTENT CARDS, NO GRID */
/* ALL LAYOUTS ARE FLEXBOX AS REQUIRED */
