/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F5F0;
  color: #1d2a36;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: #205072;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
a {
  color: #205072;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #69A297;
  text-shadow: 0 1px 4px #e7efe6;
}

/*---- CONTAINER, SECTION, SPACING & FLEX LAYOUTS ----*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(32,80,114, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  flex: 1 1 270px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 22px 0 rgba(32,80,114, 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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(32,80,114, 0.10);
  font-size: 1.1rem;
  color: #14304d;
  flex-direction: column;
  max-width: 500px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: #205072;
  color: #fff;
  padding: 80px 0 64px 0;
  position: relative;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .btn-primary {
  margin-top: 24px;
}

/* BUTTONS */
.btn-primary {
  background-color: #69A297;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.09rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 32px;
  padding: 15px 36px;
  margin: 8px 0 8px 0;
  transition: background 0.18s, transform 0.16s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(105,162,151, 0.20);
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #205072;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px 0 rgba(105,162,151, 0.20);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 13px 0 rgba(32,80,114,0.05);
  padding: 12px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
header .container,
header > a,
header > nav {
  display: flex;
  align-items: center;
}
header > a img {
  height: 44px;
  margin-right: 28px;
}
header nav {
  display: flex;
  gap: 22px;
  margin-left: 16px;
  flex: 1;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  color: #205072;
  background: none;
  padding: 6px 13px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0px;
  transition: background 0.18s, color 0.15s, box-shadow 0.16s;
}
header nav a:hover, header nav a:focus {
  color: #69A297;
  background: rgba(32,80,114,0.08);
}
header nav .btn-primary {
  margin-left: 16px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  background: #69A297;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.09);
  transition: background 0.2s, color 0.16s, transform 0.16s;
  z-index: 210;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #205072;
  transform: scale(1.12);
}

/* MOBILE NAV MENU (OFFCANVAS) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #f6f5f0;
  box-shadow: -3px 0 18px 0 rgba(32,80,114,.16);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.7,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #205072;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-self: flex-end;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.16s, transform 0.16s;
  z-index: 1201;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #69A297;
  color: #fff;
  transform: scale(1.16);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 0 0 0;
}
.mobile-nav a {
  color: #205072;
  background: none;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 2px solid #eee;
  transition: color 0.2s, background 0.16s;
  border-radius: 0 22px 22px 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #fff;
  background: #69A297;
}
/* Hide main nav + show burger on mobile */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- FLEX GRIDS FOR CUSTOM COMPONENTS --- */
.feature-grid,
.benefits-grid,
.category-grid,
.article-cards,
.service-cards,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div,
.benefits-grid > div,
.category-grid > div,
.article-cards > div,
.service-cards > div,
.testimonial-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(32,80,114,0.10);
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.23s;
  margin-bottom: 20px;
}
.feature-grid > div:hover,
.benefits-grid > div:hover,
.category-grid > div:hover,
.service-cards > div:hover,
.article-cards > div:hover {
  box-shadow: 0 4px 16px 0 rgba(32,80,114,0.18);
}
.testimonial-list > div {
  align-items: flex-start;
  min-width: 280px;
  max-width: 370px;
  color: #14304d;
}
/* --- CUSTOM SECTION HIGHLIGHTS & CARDS --- */
.highlight-offers, .promo-banner, .featured-review, .unique-selling-points ul {
  background: #69A297;
  color: #fff;
  border-radius: 18px;
  padding: 18px 24px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgba(32,80,114,0.13);
  margin: 24px 0 12px 0;
}
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #205072;
  margin-top: 10px;
}
.star-rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #205072;
}
.featured-review blockquote {
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid #fff;
  color: #fff;
}
.tips-list, .offer-list, .featured-products-list {
  margin: 18px 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* MAP & HOURS */
.map, .hours, .contact-details {
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(32,80,114,0.10);
  margin-bottom: 20px;
  font-size: 1.03rem;
  color: #205072;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.contact-details a {
  color: #69A297;
  font-weight: 700;
}
.content-wrapper .hours, .content-wrapper .map { margin-bottom: 0; }

/* CTA SECTION */
.cta {
  background: #205072;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 48px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .btn-primary {
  background: #fff;
  color: #205072;
  margin-top: 12px;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #69A297;
  color: #fff;
}

/* FOOTER */
footer {
  background: #205072;
  color: #fff;
  padding: 44px 0 28px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(32,80,114,0.12);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer img {
  height: 38px;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #fff;
  background: none;
  font-weight: 500;
  transition: color 0.12s;
  text-decoration: underline dashed rgba(255,255,255,.18);
  text-underline-offset: 5px;
}
footer nav a:hover, footer nav a:focus {
  color: #69A297;
}
.contact-short {
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #F6F5F0;
  font-size: 0.99rem;
  font-weight: 600;
  align-items: flex-start;
}
.contact-short img {
  height: 17px;
  width: 17px;
  margin-right: 6px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 990px) {
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .benefits-grid, .category-grid, .service-cards, .testimonial-list {
    gap: 18px;
  }
  .feature-grid > div, .benefits-grid > div, .category-grid > div, .service-cards > div {
    min-width: 180px;
  }
  footer .content-wrapper {
    gap: 20px;
  }
}/** Mobile layout **/
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-grid, .testimonial-list, .feature-grid, .benefits-grid, .category-grid, .service-cards, .article-cards {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .benefits-grid > div, .category-grid > div, .service-cards > div, .article-cards > div, .testimonial-list > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .section {
    margin-bottom: 40px;
    padding: 26px 8px;
  }
  .hero {
    padding: 48px 0 40px 0;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .cta {
    padding: 26px 6px;
  }
  .testimonial-card {
    padding: 18px 11px;
    font-size: 1rem;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .map, .hours, .contact-details {
    font-size: 0.98rem;
    gap: 8px;
    padding: 12px 9px;
  }
}

/* -- Cookie Consent Banner & Modal -- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #14304d;
  border-top: 3.5px solid #69A297;
  box-shadow: 0 -2px 18px 0 rgba(32,80,114,0.13);
  z-index: 2200;
  padding: 26px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 1.02rem;
  min-height: 80px;
  animation: fade_in_banner 0.5s;
}
.cookie-banner strong {
  color: #205072;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: #69A297;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 10px 20px;
  font-weight: 700;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background .16s, color .12s, transform .10s;
  box-shadow: 0 2px 8px 0 rgba(32,80,114, 0.10);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #205072;
  color: #fff;
  transform: scale(1.08);
}
.cookie-btn.secondary {
  background: #fff;
  color: #205072;
  border: 2px solid #69A297;
  box-shadow: none;
}
.cookie-btn.secondary:hover {
  background: #F6F5F0;
  color: #69A297;
  border-color: #205072;
}
/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,80,114,0.13);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade_in_modal 0.32s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(32,80,114,0.17);
  padding: 36px 24px 26px 24px;
  max-width: 410px;
  width: 90vw;
  color: #205072;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: fade_in_modal 0.28s;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.02rem;
  margin-bottom: 13px;
}
.cookie-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #69A297;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #205072;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 86px;
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    padding: 19px 7px 18px 7px;
    max-width: 99vw;
    font-size: 0.99rem;
  }
}
/* --- ANIMATIONS --- */
@keyframes fade_in_banner {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade_in_modal {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- UTILITIES & MICROINTERACTIONS --- */
::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }

input, textarea, select {
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #69A297;
  padding: 10px 13px;
  transition: border-color 0.14s;
  box-shadow: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #205072;
  outline: none;
}

blockquote {
  border-left: 4px solid #69A297;
  margin: 0 0 12px 0;
  padding: 0 0 0 18px;
  color: #205072;
  font-style: italic;
  font-weight: 500;
  background: #f0f7f6;
}

/*--- END CSS ---*/
