/* ==== 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, 
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;
  color: #1A2233;
  background: #F8F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
a:focus {
  outline: 2px solid #59B977;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* ==== BRAND FONTS (Include external in HTML head) ==== */
/* Montserrat for Display, Roboto for Body */
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

body, p, ul, ol, li, address, .price {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-weight: 400;
}

/* ==== TYPOGRAPHY HIERARCHY ==== */
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #232A38;
}

strong {
  font-weight: 700;
}
.price {
  font-weight: 700;
  color: #1A2233;
  background: #F2ECCF;
  display: inline-block;
  border-radius: 8px;
  padding: 4px 12px;
  margin-top: 6px;
  font-size: 1.05rem;
}

/* ==== GEOMETRIC/STRUCTURED THEME COLORS ==== */
:root {
  --color-primary: #1A2233;
  --color-secondary: #59B977;
  --color-accent: #F2ECCF;
  --color-bg: #F8F9FB;
  --color-text-dark: #1A2233;
  --color-text-light: #fff;
  --color-muted: #C9CEDA;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > li {
  background: #fff;
  border: 2px solid #F2ECCF;
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 #e7efec16;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 20px 28px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.22s cubic-bezier(.4,.2,.2,1), box-shadow 0.22s;
}
.feature-grid > li:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 40px 0 #59b97733;
  border-color: #59B977;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: #F2ECCF;
  box-shadow: 0 3px 10px #C9CEDA22;
  padding: 6px;
}

.usp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.usp-list img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #F2ECCF;
  padding: 4px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border: 2px solid #F2ECCF;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 #dedede0e;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.card:hover {
  box-shadow: 0 10px 34px 0 #59b97733;
  border-color: #59B977;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px 18px;
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F2ECCF;
  border-radius: 16px;
  box-shadow: 0 3px 16px #C9CEDA31;
  color: #1A2233;
  font-size: 1.09rem;
  font-style: italic;
  position: relative;
}
.testimonial-card strong {
  display: block;
  margin-left: auto;
  font-style: normal;
  color: #59B977;
  font-weight: 700;
  font-size: 1.04rem;
}
.testimonial-card p {
  color: #232A38;
  font-weight: 500;
}

/* ---- FEATURES ---- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(110deg, #F2ECCF 0%, #F8F9FB 80%);
  padding: 56px 0 36px 0;
  border-bottom: 4px solid #F2ECCF;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #1A2233;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 9px;
  letter-spacing: 1.5px;
}
.hero p {
  color: #232A38;
  font-size: 1.17rem;
  font-weight: 500;
  margin-bottom: 25px;
}

/* ==== BUTTONS ==== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 2em;
  border-radius: 36px;
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0px 3px 20px 0 #C9CEDA32;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.24s;
  gap: 12px;
  margin-right: 10px;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #39794d;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0px 10px 40px 0 #59b97733;
  border-color: #39794d;
}
.btn-secondary {
  background: #fff;
  color: #59B977;
  border: 2px solid #59B977;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F2ECCF;
  color: #1A2233;
  border-color: #1A2233;
}

/* ==== NAVIGATION ==== */
header {
  background: #F8F9FB;
  box-shadow: 0 4px 24px #C9CEDA19;
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
  padding: 0 16px;
  width: 100%;
}
.main-navigation > a img {
  height: 36px;
  width: auto;
  border-radius: 11px;
  background: #F2ECCF;
  box-shadow: 0 3px 16px #C9CEDA22;
}
.main-navigation ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-navigation li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2233;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.13s, color 0.13s;
}
.main-navigation li a:hover, .main-navigation li a.active {
  background: #F2ECCF;
  color: #59B977;
}
.main-navigation .btn-primary {
  margin-right: 0;
  margin-left: 12px;
}

/* ==== FOOTER ==== */
footer {
  background: #1A2233;
  color: #fff;
  padding: 36px 0 26px 0;
}
.footer-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-navigation li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.9;
  transition: color .13s, opacity .12s;
}
.footer-navigation li a:hover {
  color: #59B977;
  opacity: 1;
}
footer address {
  text-align: center;
  color: #F2ECCF;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 8px;
}
footer address a {
  color: #59B977;
  text-decoration: underline;
  margin-left: 4px;
  font-weight: 500;
}
/* ==== MOBILE MAIN MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 23px;
  background: #fff;
  border: 2px solid #1A2233;
  color: #1A2233;
  font-size: 2rem;
  border-radius: 10px;
  width: 52px;
  height: 48px;
  z-index: 120;
  cursor: pointer;
  box-shadow: 0 3px 16px #C9CEDA12;
  transition: background 0.11s, box-shadow 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2ECCF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #1A2233;
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.58,.03,.55,.93);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 22px 6px 0;
  background: #F2ECCF;
  border-radius: 50%;
  color: #1A2233;
  font-size: 2.25rem;
  width: 48px;
  height: 48px;
  border: 2px solid #1A2233;
  box-shadow: 0 3px 14px #F2ECCF33;
  transition: background .14s, color .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #59B977;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin-left: 34px;
  margin-top: 36px;
}
.mobile-nav a {
  color: #F2ECCF;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 7px;
  padding: 12px 0 12px 0;
  min-width: 180px;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #59B977;
  color: #fff;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1A2233;
  color: #F2ECCF;
  box-shadow: 0 -2px 18px #1A223388;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 26px 20px 26px 20px;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(.66,.03,.51,.98), opacity 0.14s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner-text {
  flex: 2 1 250px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #F2ECCF;
}
.cookie-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-cookie,
.btn-cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 28px;
  border: 2px solid #F2ECCF;
  background: #59B977;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.13s, color 0.13s, border-color 0.18s, transform 0.16s;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #F2ECCF;
  color: #1A2233;
  border-color: #1A2233;
  transform: scale(1.03);
}
.btn-cookie-settings {
  background: transparent;
  color: #F2ECCF;
  border-color: #F2ECCF;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #F2ECCF;
  color: #1A2233;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #1A2233BB;
  z-index: 420;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1A2233;
  border-radius: 18px;
  box-shadow: 0 3px 38px #1A223355;
  padding: 32px 28px;
  width: 96%;
  max-width: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn .38s cubic-bezier(.53,.04,.43,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2ECCF;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  height: 22px;
  width: 22px;
  accent-color: #59B977;
}
.cookie-category.essential {
  font-weight: 700;
  color: #1A2233;
  opacity: .9;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 15px;
  top: 12px;
  background: #F2ECCF;
  color: #1A2233;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  border: 2px solid #1A2233;
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .11s, color .10s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #59B977;
  color: #fff;
}

/* ==== FORM ==== */
input, textarea, select {
  border: 2px solid #C9CEDA;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 1rem;
  background: #F8F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A2233;
  margin-bottom: 16px;
  transition: border-color .15s;
  box-shadow: 0 1.5px 6px #C9CEDA11;
}
input:focus, textarea:focus, select:focus {
  border-color: #59B977;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

/* ========= GENERAL SPACING/STRUCTURE ========= */
main {
  margin-top: 20px;
  margin-bottom: 56px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child, .hero:last-child {
  margin-bottom: 0;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1100px) {
  .feature-grid {
    flex: 1 1 100%;
    gap: 18px;
  }
  .container {
    padding: 0 12px;
  }
  .main-navigation ul {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-navigation, .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-navigation ul {
    gap: 16px;
  }
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  /* NAV */
  .main-navigation ul,
  .main-navigation .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-navigation {
    justify-content: flex-start;
    gap: 2vw;
  }
  .hero {
    padding: 32px 0 24px 0;
  }
  .container {
    padding: 0 7px;
  }
  .section, section {
    padding: 25px 0 30px 0;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.42rem;
  }
  .footer-navigation ul {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 18px 0 12px 0;
    border-radius: 0;
  }
  .feature-grid > li,
  .card {
    padding: 18px 12px 14px 12px;
    max-width: 99vw;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    min-width: 0;
    padding: 12px 0;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 13px 7px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 10px 14px 10px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 22px 6vw 19px 6vw;
    min-width: 90vw;
  }
}

/* ---- UTILITY ---- */
.mission {
  font-size: 1.13rem;
  font-weight: 700;
  color: #59B977;
}
.tagline {
  background: #F2ECCF;
  border-radius: 11px;
  padding: 7px 17px;
  font-size: 1.11rem;
  color: #1A2233;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ---- GEOMETRIC DECORATIVE SHAPES ---- */
.feature-grid > li, .usp-list li, .testimonial-card, .card {
  /* Geometric look via shape & border radius */
  clip-path: polygon(0 8%, 4% 0, 96% 0, 100% 8%, 100% 92%, 96% 100%, 4% 100%, 0 92%);
}

/* OPTIONAL: Scrollbar Styling for immersion */
::-webkit-scrollbar {
  width: 11px;
  background: #F2ECCF;
}
::-webkit-scrollbar-thumb {
  background: #C9CEDA;
  border-radius: 9px;
  border: 4px solid #F2ECCF;
}

/* ======= END OF STYLE ======= */
