/* 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, 
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F6F5F1;
  color: #36505C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #36505C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #b87b10;
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

/* GLOBAL TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #23333b;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #36505C;
  font-weight: 700;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #23333b;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #36505C;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  font-size: 1rem;
  color: #36505C;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 38px 38px 28px 57px/52px 43px 50px 35px;
  box-shadow: 0 4px 24px 0 rgba(54,80,92,0.07);
  /* organic blob shape */
}

/* HEADER */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(54,80,92,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #36505C;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #EBE5D8;
  color: #b87b10;
}
.cta-btn {
  background: #D69A2D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 26px;
  border-radius: 23px 26px 22px 28px/25px 19px 34px 22px;
  box-shadow: 0 2px 8px rgba(54,80,92,0.11), 0 2px 0 #EFE2BF inset;
  margin-left: 20px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #b87b10;
  box-shadow: 0 2px 16px rgba(54,80,92,0.16);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #EBE5D8;
  color: #23333b;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  margin-left: 15px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #D69A2D;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(54,80,92,0.96);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.8, .02, .2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #fff;
  background: transparent;
  margin: 32px 24px 8px 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D69A2D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 28px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  padding: 10px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  width: fit-content;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #D69A2D;
  color: #23333b;
}

/* HERO SECTION */
.hero {
  padding: 0;
  margin-bottom: 60px;
  background: linear-gradient(115deg, #EBE5D8 62%, #E2F2E4 100%);
  border-radius: 0 0 60px 60px / 0 0 47px 62px;
}
.hero .container {
  padding-top: 48px;
  padding-bottom: 48px;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 720px;
  gap: 24px;
  align-items: flex-start;
}
.hero .cta-btn {
  margin-top: 8px;
}

/* ORGANIC CARD / PREVIEW STYLES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 39px 21px 35px 29px/37px 29px 42px 26px;
  box-shadow: 0 3px 18px 0 rgba(54,80,92,0.09);
  padding: 24px;
  min-width: 270px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(54,80,92,.18);
  transform: translateY(-3px) scale(1.018);
}

.category-teaser {
  background: #EBE5D8;
  border-radius: 33px 20px 30px 23px/32px 21px 38px 22px;
  box-shadow: 0 1px 7px 0 rgba(54,80,92,0.04);
  padding: 22px 20px 20px 22px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, background 0.18s;
}
.category-teaser:hover, .category-teaser:focus-within {
  box-shadow: 0 6px 20px 0 rgba(54,80,92,0.11);
  background: #E2F2E4;
}
.category-teaser h3 {
  margin-bottom: 8px;
}
.category-teaser a {
  color: #36505C;
  font-weight: 600;
  margin-top: 8px;
  text-decoration: underline;
  transition: color 0.18s;
}
.category-teaser a:hover, .category-teaser a:focus {
  color: #b87b10;
}

/* FEATURES & LISTS */
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #E2F2E4;
  border-radius: 45px 34px 51px 38px/53px 41px 45px 29px;
}
.features h2 {
  margin-bottom: 10px;
}
.features .content-wrapper {
  padding: 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.09rem;
  background: #fff;
  border-radius: 20px 28px 20px 30px/24px 18px 22px 20px;
  padding: 18px 20px;
  box-shadow: 0 2px 7px 0 rgba(210,180,140,0.08);
  margin-bottom: 12px;
  min-width: 260px;
  flex: 1 1 320px;
}
.features img {
  width: 34px;
  height: 34px;
}

.values ul,
.trust ul, .trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-bottom: 16px;
}
.values li, .trust li, .trust-signals li {
  background: #EBE5D8;
  border-radius: 22px 28px 22px 30px/20px 22px 27px 23px;
  padding: 16px 22px;
  color: #23333b;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 8px 0 rgba(54,80,92,0.06);
  min-width: 230px;
  flex: 1 1 270px;
  margin-bottom: 10px;
}
.values strong {
  color: #36505C;
  margin-right: 2px;
}

.trust img, .trust-signals img {
  width: 26px;
  height: 26px;
}

/* ORGANIC SHAPES WITH TEXTURED EFFECTS (subtle) */
.section, .card, .category-teaser, .testimonial-card {
  /* Light subtle paper-like texture using SVG backgrounds or noise */
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='80' height='80' fill='white'/%3E%3Cellipse opacity='0.07' cx='37' cy='47' rx='42' ry='28' fill='%2323342B'/%3E%3C/svg%3E");
  background-size: 230px 160px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff6e3;
  border-radius: 44px 30px 40px 22px/35px 49px 32px 44px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  margin-bottom: 18px;
}
.testimonials .content-wrapper {
  gap: 24px;
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #EBE5D8;
  border-radius: 26px 36px 32px 24px/24px 28px 31px 25px;
  box-shadow: 0 2px 13px 0 rgba(54,80,92,0.14);
  min-width: 260px;
  flex: 1 1 340px;
  z-index: 0;
  transition: box-shadow 0.2s, background 0.18s;
}
.testimonial-card p {
  color: #23333b;
  font-size: 1.11rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: #b87b10;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 23px 0 rgba(54,80,92,0.17);
  background: #fff;
}

/* CTA SECTIONS */
.cta {
  background: #E2F2E4;
  border-radius: 38px 29px 45px 22px/26px 43px 35px 30px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta .content-wrapper {
  align-items: flex-start;
}

.cta-link {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #b87b10;
  text-decoration: underline;
  transition: color 0.19s;
}
.cta-link:hover, .cta-link:focus {
  color: #36505C;
}

/******** PAGE STRUCTURE SECTIONS ********/
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/**** MAP EMBED & ICONS ****/
.map-embed {
  border-radius: 18px 22px 17px 31px/21px 26px 18px 20px;
  background: #E2F2E4;
  padding: 13px 18px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.map-embed img {
  margin-right: 8px;
  width: 28px;
  height: 28px;
}

/**** MOBILE CARD GRID GAPS ENFORCED ****/
@media (max-width: 1100px) {
  .category-teaser, .testimonial-card, .card {
    min-width: 220px;
    flex-basis: 48%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .section,
  .hero,
  .features,
  .cta,
  .testimonials {
    padding: 30px 7px;
    border-radius: 26px 26px 22px 30px/32px 21px 28px 14px;
  }
  .category-teaser, .testimonial-card, .card {
    min-width: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/**** OTHER GENERAL STYLES ****/
li {
  margin-bottom: 7px;
}
li:last-child {
  margin-bottom: 0;
}
.content-wrapper ul {
  margin-bottom: 0;
}

/**** LEGAL / THANK-YOU ****/
.legal {
  background: #fff;
  border-radius: 34px 22px 40px 21px/30px 37px 32px 23px;
  padding: 38px 16px;
  margin-bottom: 50px;
}
.legal h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}
.legal h2, .legal h3 {
  font-size: 1.27rem;
  margin-top: 16px;
}
.thank-you {
  background: #E2F2E4;
  border-radius: 30px 24px 27px 22px/24px 27px 33px 13px;
  padding: 32px 24px;
  margin-bottom: 60px;
}
.next-steps {
  font-size: 1rem;
  margin-bottom: 7px;
}

/**** CONTACT ****/
.contact {
  background: #fff;
  border-radius: 38px 37px 27px 30px/35px 41px 25px 28px;
  padding: 33px 23px;
  margin-bottom: 40px;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact img {
  margin-right: 11px;
  width: 30px;
  height: 30px;
}
.contact-form {
  background: #fbf8f3;
  border-radius: 25px 17px 22px 17px/29px 22px 25px 13px;
  padding: 25px 15px;
  margin-bottom: 30px;
}
.details {
  background: #EBE5D8;
  border-radius: 23px 17px 21px 16px/21px 19px 23px 14px;
  padding: 18px 13px;
  margin-bottom: 40px;
}

/**** FOOTER ****/
footer {
  background: #23333b;
  color: #fff;
  margin-top: 80px;
  width: 100%;
}
footer .container {
  flex-direction: column;
  padding: 30px 20px 26px 20px;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 5px;
}
.footer-nav a {
  color: #EBE5D8;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.9;
  font-weight: 500;
  transition: color 0.17s, opacity 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #D69A2D;
  opacity: 1;
}
.footer-info {
  color: #E2F2E4;
  opacity: 0.97;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  footer .container {
    padding: 24px 7px 22px 7px;
  }
}

/*********** COOKIE CONSENT BANNER ***********/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffef9;
  box-shadow: 0 -4px 16px 0 rgba(54,80,92,0.17);
  border-radius: 28px 28px 0 0/22px 22px 0 0;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 3000;
  transition: transform 0.38s cubic-bezier(.8, .02, .2, 1), opacity 0.15s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 3 1 320px;
  color: #36505C;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  background: #D69A2D;
  border-radius: 18px 22px 17px 15px/14px 22px 12px 13px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 9px 22px;
  margin: 0 2px;
  box-shadow: 0 1.5px 4px 0 rgba(54,80,92,0.11);
  border: none;
  transition: background 0.17s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #b87b10;
}
.cookie-btn.secondary {
  background: #EBE5D8;
  color: #36505C;
  border: 1px solid #D69A2D;
}
.cookie-btn.secondary:hover,.cookie-btn.secondary:focus {
  background: #D69A2D;
  color: #fff;
}

/**** COOKIE CONSENT MODAL ****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(54,80,92,0.4);
  z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 35px 29px 33px 38px/32px 34px 38px 23px;
  box-shadow: 0 6px 32px 0 rgba(54,80,92,0.15);
  padding: 38px 28px 28px 28px;
  max-width: 370px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #23333b;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  font-size: 1rem;
  width: 100%;
}
.cookie-category input[type="checkbox"] {
  accent-color: #D69A2D;
  width: 22px;
  height: 22px;
}
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 16px; margin-top: 8px;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  right: 30px;
  top: 25px;
  background: transparent;
  color: #b87b10;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
}

/**** ANIMATIONS ****/
@media (prefers-reduced-motion: no-preference) {
  .card, .category-teaser, .cta-btn, .testimonial-card, .cookie-btn, .mobile-menu {
    transition: box-shadow 0.2s, transform 0.17s, background 0.17s, color 0.15s;
  }
}

/**** RESPONSIVE LAYOUTS ****/
@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .hero .container {
    padding-top: 35px;
    padding-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .hero h1, h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .features ul, .values ul, .trust ul, .trust-signals ul {
    flex-direction: column;
    gap: 10px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .cta .content-wrapper {
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 5px 15px 10px;
    gap: 12px;
  }
}

/**** ACCENT BUTTONS, LINK, FOCUS ****/
:focus-visible {
  outline: 2px solid #b87b10;
  outline-offset: 2px;
}

/**** HTML5 INPUTS etc. (for future-proof forms) ****/
input, textarea {
  border: 1px solid #EBE5D8;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 13px;
}
input:focus, textarea:focus {
  border-color: #D69A2D;
}

/**** UTILITY CLASSES ****/
.mb-20 {
  margin-bottom: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.text-center {
  text-align: center !important;
}

/**** HIDE/SHOW HELPER CLASSES ****/
.hide-sm {
  display: block;
}
@media (max-width: 600px) {
  .hide-sm {
    display: none !important;
  }
}

/* END OF STYLE.CSS */
