/* RESET & NORMALIZE */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
html { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FAF9F6;
  color: #253653;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; height: auto; border: 0; }
ul, ol { padding-left: 20px; }
a { color: #253653; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #7FC97F; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #253653;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, li, span { font-size: 1rem; }
p { margin-bottom: 14px; max-width: 700px; }
ul, ol { margin-bottom: 16px; }

/* LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px;
}
main { margin-top: 30px; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px -8px rgba(37,54,83,0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 18px; box-shadow: 0 2px 12px 0 rgba(37,54,83,0.06); padding: 24px; transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 8px 36px -4px rgba(37,54,83,0.15); }
.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: 20px;
  padding: 20px;
  background: #F3F7FB;
  border-left: 6px solid #7FC97F;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(37,54,83,0.09);
  min-width: 240px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
section:first-of-type {
  background: #253653;
  color: #fff;
  margin-bottom: 60px;
  min-height: 360px;
}
section:first-of-type h1, section:first-of-type p {
  color: #fff;
}
section:first-of-type .btn-primary {
  background: #7FC97F;
  color: #253653;
}

/* FEATURES & SERVICE */
.feature-grid, .service-list, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div, .product-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(37,54,83,0.07);
  padding: 26px 22px 22px 22px;
  position: relative;
  transition: box-shadow 0.19s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .service-list > div:hover, .product-grid > div:hover {
  box-shadow: 0 6px 24px -4px rgba(127,201,127,0.17);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img, .product-grid img {
  height: 44px;
  margin-bottom: 14px;
}

/* BLOG POST STYLES */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-post-list article {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(37,54,83,0.06);
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-post-list article h2 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.blog-post-list article a {
  margin-top: 14px;
  font-weight: 700;
  color: #7FC97F;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-post-list article a:hover {
  color: #253653;
}

/* SEARCH & FILTERS */
.search-bar {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.search-bar input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid #253653;
  font-size: 1rem;
  outline: none;
  background: #FAF9F6;
}
.category-filters, .sort-filters {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.category-filters a, .sort-filters a {
  font-weight: 700;
  color: #253653;
  padding: 5px 14px;
  border-radius: 20px;
  background: #F3F7FB;
  transition: background 0.18s, color 0.18s;
}
.category-filters a:hover, .sort-filters a:hover {
  background: #7FC97F;
  color: #fff;
}

/* NEWSLETTER FORM */
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.newsletter-form input[type="email"] {
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid #253653;
  font-size: 1rem;
  min-width: 190px;
}

/* BUTTONS */
.btn-primary, button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #253653;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 14px 34px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(37,54,83,0.11);
  transition: background 0.18s, transform 0.13s, box-shadow 0.16s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #7FC97F;
  color: #253653;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 22px -6px rgba(127,201,127,0.22);
}

/* HEADER & NAVIGATION */
header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: #FAF9F6;
  box-shadow: 0 2px 24px -8px rgba(37,54,83,0.06);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 18px 12px 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 18px;
}
header nav a {
  font-weight: 700;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
  color: #253653;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .16s, color .13s;
}
header nav a:hover, header nav a:focus {
  background: #7FC97F;
  color: #fff;
}
header .btn-primary {
  margin-left: 22px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #253653;
  z-index: 1102;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #253653;
  z-index: 1111;
  transform: translateX(-104vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px 24px 24px;
  transition: transform 0.32s cubic-bezier(.61,.01,.56,1);
  box-shadow: 0 8px 32px 0 rgba(37,54,83,0.36);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 22px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.18rem;
  padding: 10px 0 10px 0;
  transition: color 0.16s, background 0.15s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7FC97F;
  color: #253653;
  padding-left: 8px;
}
@media (max-width: 1040px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-right: 18px;
    position: absolute;
    top: 16px;
    right: 0;
  }
}
@media (min-width:1041px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* TESTIMONIALS */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonials-slider .testimonial-card {
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #FAF9F6;
  border-left: 6px solid #253653;
  color: #253653;
  box-shadow: 0 2px 10px 0 rgba(37,54,83,0.04);
}
.testimonials-slider .testimonial-card p {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #253653;
}
.testimonials-slider .testimonial-card span {
  font-size: 0.96rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #7FC97F;
  font-weight: 500;
  margin-top: 6px;
}

/* CTA SECTIONS */
.content-wrapper > .btn-primary {
  align-self: flex-start;
}

/* FOOTER */
footer {
  background: #253653;
  color: #fff;
  padding: 42px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #7FC97F;
  font-weight: bold;
  font-size: 1.02rem;
  transition: color .15s, text-decoration .15s;
}
.footer-menu a:hover { color: #fff; text-decoration: underline; }
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 0.99rem;
}
.contact-info img {
  height: 20px;
  width: 20px;
  margin-right: 4px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.social-links img {
  width: 28px; height: 28px; filter: brightness(1.1);
  transition: filter 0.14s, transform 0.14s;
  cursor: pointer;
}
.social-links img:hover { filter: brightness(1.22); transform: scale(1.09); }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .feature-grid, .service-list, .product-grid, .content-grid, .blog-post-list, .testimonials-slider {
    gap: 18px;
  }
  .feature-grid > div, .service-list > div, .product-grid > div, .blog-post-list article, .testimonial-card {
    min-width: 240px;
  }
  .testimonials-slider {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.06rem; }
  .section { padding: 30px 8px; margin-bottom: 38px; border-radius: 12px; }
  main { margin-top: 10px; }
  .container { padding: 0 8px; }
  .feature-grid, .service-list, .product-grid, .content-grid, .blog-post-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-list > div, .product-grid > div, .blog-post-list article {
    padding: 16px 12px 12px 12px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .footer-menu, .contact-info, .social-links {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container { gap: 16px; }
}

@media (max-width: 530px) {
  h1 { font-size: 1.46rem; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .btn-primary, button.btn-primary { width: 100%; text-align: center; justify-content: center; }
}

/* MISC CLASSES */
.text-section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.opening-hours {
  display: flex; align-items: center; gap: 12px; margin: 12px 0 16px 0;
}
.navigation-links {
  display: flex;
  gap: 10px;
  margin: 18px 0 0 0;
  flex-wrap: wrap;
  font-size: 1.05rem;
}
.navigation-links a {
  color: #7FC97F;
  font-weight: 600;
}
.navigation-links a:hover { color: #253653; text-decoration: underline; }
.option-selectors p { margin: 0 0 14px 0; font-weight: 700; }

/* SMOOTH INTERACTIONS */
.btn-primary, button, input, .card, .blog-post-list article, .feature-grid > div, .service-list > div, .product-grid > div, .testimonial-card, .mobile-menu, .mobile-nav a {
  transition: all 0.18s cubic-bezier(.62,.02,.32,.97);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #253653;
  color: #fff;
  z-index: 1500;
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 32px -10px rgba(37,54,83,0.22);
  gap: 14px;
  font-size: 1.01rem;
  border-radius: 20px 20px 0 0;
  animation: cookie-slide-in 0.33s cubic-bezier(.71,-0.23,.26,1.44);
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner button, .cookie-banner .btn {
  padding: 11px 28px;
  font-size: 0.99rem;
  border-radius: 30px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .btn-accept {
  background: #7FC97F;
  color: #253653;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #44ae44;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #fff;
  color: #253653;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #253653;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .btn-settings {
  background: none;
  color: #7FC97F;
  border: 2px solid #7FC97F;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #7FC97F;
  color: #253653;
}
@keyframes cookie-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* COOKIE Banner MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37,54,83,0.68);
  z-index: 1600;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fade .22s;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 38px 24px;
  box-shadow: 0 6px 64px -16px rgba(37,54,83,0.22);
  max-width: 400px;
  min-width: 260px;
  color: #253653;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 48px; height: 26px;
}
.cookie-modal input[type="checkbox"] {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F3F7FB;
  border-radius: 22px;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"]:checked + .slider {
  background: #7FC97F;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s;
  box-shadow: 0 2px 8px rgba(37,54,83,0.08);
}
.cookie-modal input[type="checkbox"]:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-modal .category-label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #253653;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
}
.cookie-modal .btn-modal-save {
  background: #7FC97F;
  color: #253653;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .btn-modal-save:hover {
  background: #253653;
  color: #7FC97F;
}
.cookie-modal .btn-modal-cancel {
  background: none;
  border: 2px solid #7FC97F;
  color: #7FC97F;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .btn-modal-cancel:hover { background: #7FC97F; color: #253653; }

/* Ensures navbar, footer, modal/z-index never overlap content */
body { position: relative; }

/* FORM ELEMENTS (inputs, etc) */
input, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 2px solid #253653;
  border-radius: 10px;
  outline: none;
  padding: 10px 16px;
  margin-bottom: 15px;
  background: #FAF9F6;
  color: #253653;
  transition: box-shadow 0.14s, border-color 0.14s;
}
input:focus, textarea:focus {
  border-color: #7FC97F;
  box-shadow: 0 0 0 2px #7FC97F44;
}
button:focus, .btn-primary:focus {
  outline: 3px solid #7FC97FbE;
  outline-offset: 2px;
}

/* UTILITY FLEXBOX-BASED LAYOUTS (no grid, no columns) */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-align-center { align-items: center; }
.flex-justify-between { justify-content: space-between; }
.gap-md { gap: 20px; }
.gap-lg { gap: 32px; }
.m-b-20 { margin-bottom: 20px; }

/* ALL MANDATORY SPACING & ALIGNMENT PATTERNS */
.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; }

/* NO ABSOLUTE POSITIONING ON CONTENT CARDS, except decoration */
/* No grid/columns anywhere, only flexbox for all containers */
