/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  font-family: inherit;
  background: none;
  outline: none;
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
  vertical-align: middle;
  border-style: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #25727B;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
p, li, blockquote {
  font-weight: 400;
  color: #43484D;
  font-size: 1em;
  line-height: 1.7;
}
body {
  background: #FAF8F6;
  color: #43484D;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1em;
  transition: background 0.4s, color 0.4s;
  min-height: 100vh;
  position: relative;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(37,114,123,0.06);
}

/* TYPOGRAPHY SCALE */
h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; margin-bottom: 20px; }
h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.4rem; margin-bottom: 13px; }
h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.1rem; margin-bottom: 10px; }

.text-section h2, .text-section h3, .text-section h4 {
  color: #25727B;
}
.legal-text h2, .legal-text h3 {
  color: #1a4d53;
}
blockquote {
  background: #E1F5F2;
  border-left: 4px solid #25727B;
  margin: 24px 0;
  padding: 16px 28px;
  font-style: italic;
  border-radius: 0 12px 12px 0;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(37,114,123,0.09);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 0 0;
  min-height: 68px;
}
nav .logo img {
  height: 54px;
  width: auto;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  padding: 4px 8px;
  color: #25727B;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: #E1F5F2;
  color: #1a4d53;
}
nav .btn-primary {
  margin-left: 18px;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  background: #25727B;
  color: #fff;
  box-shadow: 0 2px 14px rgba(37,114,123,0.13);
  cursor: pointer;
  border: none;
  transition: background 0.23s, box-shadow 0.23s, color 0.17s;
  margin-top: 6px;
  min-width: 140px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1a4d53;
  color: #fff8e3;
  box-shadow: 0 6px 18px rgba(37,114,123,0.22);
}
.btn-secondary {
  background: #F6B900;
  color: #fff;
  box-shadow: 0 2px 8px rgba(246,185,0,0.10);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #e1a800;
  color: #fff;
  box-shadow: 0 6px 20px rgba(246,185,0,0.18);
}
a.btn-primary, a.btn-secondary {
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(180deg, #FAF8F6 88%, #E1F5F2 100%);
  padding: 48px 0 32px 0;
  margin-bottom: 34px;
  min-height: 300px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
}
.hero h1 {
  color: #1a4d53;
  margin-bottom: 6px;
}
.hero p {
  color: #25727B;
  font-size: 1.13em;
  margin-bottom: 8px;
}

/* FEATURES GRID + CARD CONTAINERS */
.features-grid, .usp-list, .product-grid, .services-list, .advice-list, .faq-accordion, .store-list, .contact-block, .opening-hours, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(37,114,123,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
  min-width: 220px;
  min-height: 180px;
  transition: box-shadow .23s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(37, 114, 123, 0.15);
  transform: translateY(-3px) scale(1.03);
}

/* FEATURE & USP ITEMS */
.feature-item, .usp-item, .product-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FEFEFE;
  border-radius: 18px;
  box-shadow: 0 1px 6px 0 rgba(37,114,123,0.06);
  padding: 24px 20px;
  min-width: 230px;
  min-height: 180px;
  position: relative;
  margin-bottom: 24px;
  transition: box-shadow .21s;
}
.feature-item img, .usp-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 2px;
}
.feature-item h3, .usp-item h3 {
  color: #1a4d53;
  font-size: 1.13rem;
  margin-bottom: 5px;
}
.feature-item p, .usp-item p {
  color: #43484D;
  font-size: 1em;
}

.product-item {
  background: #FAF8F6;
  border: 1.5px solid #E1F5F2;
  margin-bottom: 22px;
}
.product-item h3 {
  color: #25727B;
  margin-bottom: 3px;
}
.product-item ul {
  margin: 10px 0 8px 0;
  padding-left: 0;
}
.product-item ul li {
  padding-left: 16px;
  background: url('../assets/icons/icon-leaf.svg') left center / 12px 14px no-repeat;
  margin-bottom: 5px;
  color: #666;
  font-size: .97em;
}
.product-item p {
  margin-top: 9px;
  color: #527177;
}

/* TESTIMONIAL CARDS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #E1F5F2;
  box-shadow: 0 1px 9px 0 rgba(37,114,123,0.08);
  flex: 1 1 300px;
  min-width: 240px;
  min-height: 110px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #1a4d53;
  transition: box-shadow .17s, background .11s;
}
.testimonial-card:hover {
  background: #d8ece9;
  box-shadow: 0 4px 16px 0 rgba(37,114,123,.12);
}
.testimonial-card p {
  color: #1a4d53;
}
.testimonial-meta {
  align-self: flex-end;
  font-size: .97em;
  font-style: italic;
  color: #25727B;
  margin-left: 13px;
}

/* CONTACT INFO BLOCKS */
.contact-info-preview {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1em;
  color: #25727B;
  padding: 22px 0 0 0;
}
.contact-info-preview p {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #25727B;
  font-size: 1em;
  margin-bottom: 0;
}
.contact-info-preview img {
  width: 19px;
  height: 19px;
  opacity: .91;
  margin-right: 4px;
}

/* address-block & map-preview */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.address-block {
  flex: 1 1 300px;
  background: #E1F5F2;
  border-radius: 15px;
  padding: 24px 16px;
  min-width: 230px;
  margin-bottom: 14px;
}
.map-preview {
  flex: 1 1 265px;
  background: #FAF8F6;
  border-radius: 15px;
  padding: 20px 16px;
  min-width: 205px;
  margin-bottom: 14px;
}
.map-preview h3 {
  color: #25727B;
  margin-bottom: 10px;
}

.opening-hours ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #25727B;
}

.info-utili .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}
.info-utili .content-wrapper div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 160px;
  font-size: 1.05em;
}
.info-utili img {
  height: 19px;
  width: 19px;
}
.info-utili a {
  font-size: 1em;
  color: #25727B;
  text-decoration: underline;
  margin-left: 5px;
}
.info-utili a:hover { color: #F6B900; }

/* USPs & LISTS */
.assurance-points ul, .reasons-to-choose ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 16px 0;
}
.assurance-points li, .icon-bullet-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #25727B;
  font-size: 1em;
}
.assurance-points img, .icon-bullet-points img {
  width: 19px;
  height: 19px;
}
.icon-bullet-points ul {
  gap: 12px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #FEFEFE;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(37,114,123,0.04);
  padding: 22px 20px 15px 20px;
  margin-bottom: 10px;
}
.faq-item h3 {
  font-size: 1.09em;
  color: #25727B;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1em;
  color: #43484D;
}

.shortcut-links li {
  margin-bottom: 8px;
}
.shortcut-links a {
  color: #25727B;
  text-decoration: underline;
  transition: color .15s;
}
.shortcut-links a:hover,
.shortcut-links a:focus {
  color: #F6B900;
}

/* TIPS and DOS/DONTS BLOCKS */
.tips-blocks {
  background: #E1F5F2;
  border-radius: 14px;
  padding: 28px 22px 20px 22px;
  margin-bottom: 18px;
}
.dos-and-donts h4 {
  color: #1a4d53;
  font-size: 1.01em;
  margin-top: 18px;
}
.dos-and-donts ul {
  margin-bottom: 8px;
  margin-top: 5px;
}

/* LEGAL TEXT */
.legal-text {
  background: #FEFEFE;
  border-radius: 14px;
  padding: 32px 22px 22px 22px;
  font-size: 1.03em;
  color: #43484D;
}

/* STORE LIST */
.store-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1a4d53;
  font-size: 1.09em;
}
.purchase-options {
  margin-top: 13px;
  color: #25727B;
}

/* FOOTER */
footer {
  background: #F6F8F6;
  color: #25727B;
  padding: 34px 0 14px 0;
  font-size: 1.02em;
  border-top: 1px solid #E1F5F2;
  margin-top: 60px;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 17px;
}
footer nav a {
  color: #25727B;
  text-decoration: underline;
  font-size: 1em;
  transition: color .14s;
}
footer nav a:hover {
  color: #F6B900;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  justify-content: center;
  color: #1a4d53;
  font-size: .99em;
  margin-bottom: 0;
}
.footer-contact img {
  height: 24px;
  margin-right: 5px;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 60;
  background: #F6B900;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background .16s;
  box-shadow: 0 2px 8px rgba(246,185,0,0.11);
}
.mobile-menu-toggle:hover {
  background: #25727B;
  color: #fff8e3;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  background: rgba(225,245,242,0.99);
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.6,.3,.22,1.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 14px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 48px 0 rgba(37, 114, 123, 0.12);
}
.mobile-menu-close {
  background: #F6B900;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.3em;
  padding: 8px 16px;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
  transition: background .15s;
  z-index: 1200;
}
.mobile-menu-close:hover {background: #25727B;}
.mobile-nav {
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20em;
  color: #25727B;
  padding: 12px 8px;
  border-radius: 10px;
  width: 100%;
  transition: background .17s, color .17s;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6B900;
  color: #fff;
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #E1F5F2;
  color: #25727B;
  box-shadow: 0 -4px 24px 0 rgba(37,114,123,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 14px 18px 14px;
  z-index: 3000;
  animation: bannerFadeIn 1.1s;
}
@keyframes bannerFadeIn {
  from { opacity: 0; transform: translateY(85px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #25727B;
  font-size: 1em;
  margin-bottom: 12px;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookie-banner button {
  padding: 10px 26px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  background: #F6B900;
  color: #fff;
  transition: background .18s, color .18s;
  margin-bottom: 4px;
}
.cookie-banner button.cookie-reject {
  background: #25727B;
}
.cookie-banner button.cookie-settings {
  background: #E1F5F2;
  color: #25727B;
  border: 2px solid #25727B;
}
.cookie-banner button.cookie-settings:hover {
  background: #F6B900;
  color: #fff;
  border-color: #F6B900;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1a4d53;
  color: #fff8e3;
}

/* COOKIE MODAL (popup) */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37, 114, 123, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3200;
  animation: modalFadeIn .4s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 28px 0 rgba(37,114,123,0.22);
  padding: 36px 26px 28px 26px;
  max-width: 420px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cookie-modal-content h3 {
  font-size: 1.32em;
  color: #25727B;
  margin-bottom: 16px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 22px;
}
.cookie-category {
  background: #E1F5F2;
  border-radius: 14px;
  padding: 13px 12px 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a4d53;
  font-size: 1em;
  position: relative;
}
.cookie-category input[type=checkbox] {
  width: 21px;
  height: 21px;
  accent-color: #F6B900;
  margin-right: 5px;
}
.cookie-category .locked {
  color: #F6B900;
  margin-left: 8px;
  font-size: 1.15em;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: #F6B900;
  color: #fff;
  font-size: 1.12em;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  padding: 2px 13px;
  transition: background .18s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #25727B;
  color: #fff8e3;
}

/* ANIMATIONS */
.btn-primary, .btn-secondary, .feature-item, .usp-item, .testimonial-card, .faq-item, .product-item {
  transition: box-shadow .16s, background .18s, color .13s, transform .15s;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  nav ul { gap: 17px; }
  .features-grid, .usp-list, .product-grid, .services-list, .advice-list, .faq-accordion, .store-list, .contact-block, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .features-grid, .usp-list, .product-grid, .content-wrapper, .services-list, .advice-list, .faq-accordion, .store-list, .contact-block, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .feature-item, .usp-item, .product-item, .service-item, .testimonial-card, .faq-item {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    padding-right: 48px;
  }
  .hero {
    padding: 30px 0 12px 0;
    min-height: 190px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
  .section { padding: 24px 7px; }
  .container { padding: 0 8px; }
  .features-grid, .usp-list, .product-grid, .services-list, .advice-list, .faq-accordion, .store-list, .contact-block, .content-grid {
    gap: 16px;
    flex-direction: column;
  }
  .testimonial-slider {
    gap: 11px;
    flex-direction: column;
  }
  .content-wrapper, .contact-block, .info-utili .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section { flex-direction: column !important; gap: 18px; }
  .cookie-modal-content { padding: 22px 7px 20px 7px; max-width: 99vw; }
}

@media (max-width: 480px) {
  .container { padding: 0 2px; }
  .section { padding: 12px 2px; margin-bottom: 29px; }
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.05rem; }
  .hero { padding: 16px 0 7px 0; }
  .cookie-banner { padding: 14px 4px 12px 4px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 3px; }
  footer nav { flex-direction: column; gap: 9px; }
}

/* VISUAL HIERARCHY: HEADINGS, SPACING, COLORS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
}
p, li, ul, ol, blockquote, .legal-text {
  font-family: 'Lato', Arial, sans-serif;
}
ul {
  margin-bottom: 8px;
}

/* micro-interactions for all buttons and links */
a, button {
  transition: color .18s, background .18s;
}

/* Remove unwanted outlines, but restore for focus accessibility */
:focus-visible {
  outline: 2px solid #F6B900;
  outline-offset: 2px;
}

/* VISUAL ACCESSIBILITY CONTRAST for testimonials */
.testimonial-card, .icon-bullet-points li, .faq-item, .legal-text, .feature-item, .usp-item, .service-item, .product-item {
  color: #1a4d53;
  background: #E1F5F2;
  border-radius: 15px;
}
.testimonial-meta { color: #25727B; }

/* HEADINGS margin */
h1, h2 { margin-bottom: 20px; }
h3, h4 { margin-bottom: 12px; }

/* Hide cookie modal by default */
.cookie-modal { display: none; }
.cookie-modal.open { display: flex !important; }

/* Misc spacing fix */
.text-section, .reasons-to-choose, .purchase-options, .shortcut-links, .assurance-points {
  margin-bottom: 18px;
}

/* END OF CSS */
