/* =====================
   RESET & NORMALIZE
   ===================== */
html {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #2B3E50;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #2B3E50;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
}
a {
  color: #53998D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2B3E50;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li+li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2B3E50;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.18rem; }
p, address {
  color: #2B3E50;
  margin-bottom: 14px;
  font-size: 1rem;
}
strong { font-weight: 700; }

/* =====================
   SPACING & LAYOUT
   ===================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: #F6EBD9;
  box-shadow: 0 3px 16px 0 rgba(43,62,80,0.07);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(83,153,141,0.13);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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: 12px;
  padding: 20px 28px 20px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(43,62,80,0.08);
  margin-bottom: 24px;
  max-width: 530px;
  border-left: 7px solid #53998D;
}
.testimonials {
  margin-top: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(246,235,217,0.21);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 2px 10px 0 rgba(43,62,80,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 270px;
  gap: 10px;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(43,62,80,.07);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
header img {
  height: 48px;
  margin-right: 10px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3E50;
  border-radius: 999px;
  padding: 6px 18px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #F6EBD9;
  color: #53998D;
}
.cta-button {
  display: inline-block;
  background: #F6EBD9;
  color: #2B3E50;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 12px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(43,62,80,0.10);
  margin-left: 8px;
  transition: background 0.16s, color 0.18s, box-shadow 0.28s;
  outline: none;
}
.cta-button.primary {
  background: #53998D;
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #2B3E50;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(83,153,141,0.19);
}
.cta-button:hover, .cta-button:focus {
  background: #FFE3B5;
  color: #2B3E50;
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu-toggle {
  display: none;
  background: #53998D;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  padding: 8px 16px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1021;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2B3E50;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,62,80,0.98);
  color: #fff;
  z-index: 1030;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.22,.68,.5,1.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 22px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  color: #fff;
  border: none;
  margin: 8px 24px;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 1040;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6EBD9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-left: 36px;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 14px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6EBD9;
  color: #2B3E50;
  padding-left: 12px;
}
@media (max-width: 1020px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1020px) {
  .cta-button {
    margin-right: 12px;
  }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: #F6EBD9;
  border-radius: 0 0 38px 38px;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 54px;
  box-shadow: 0 6px 24px 0 rgba(83,153,141,0.08);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #2B3E50;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.18rem;
}
.hero p {
  font-size: 1.13rem;
  color: #2B3E50;
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 20px 20px;
    min-height: 180px;
    padding-top: 20px;
    padding-bottom: 12px;
  }
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #2B3E50;
  color: #fff;
  width: 100%;
  padding-top: 34px;
  padding-bottom: 16px;
  box-shadow: 0 -2px 10px 0 rgba(83,153,141,0.07);
  border-radius: 28px 28px 0 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #F6EBD9;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #D9E6E0;
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 4px;
}
@media (max-width: 750px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px 12px;
  }
  .footer-brand { align-items: flex-start; }
}

/* =====================
   RESPONSIVE BEHAVIOUR
   ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature {
    max-width: 100%;
    min-width: 150px;
    width: 100%;
  }
  .section {
    padding: 30px 12px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 6px;
    border-radius: 16px;
  }
  .feature-grid {
    gap: 14px;
  }
  .testimonials {
    margin-top: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  .section { padding: 12px 2px; }
  .feature, .testimonial-card { padding: 14px 8px; }
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, .cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.hero h1, h1 {
  font-size: 2.5rem;
}
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
}
p, address, ul, li, .feature p {
  font-size: 1rem;
  line-height: 1.6;
}
address {
  color: #2B3E50;
  font-style: normal;
  margin-bottom: 8px;
}

/* =====================
   TESTIMONIAL CARDS
   ===================== */
.testimonial-card {
  color: #2B3E50;
  background: #fff;
  border-left: 7px solid #53998D;
  box-shadow: 0 2px 12px 0 rgba(83,153,141,0.08);
  border-radius: 20px;
  font-size: 1.07rem;
  margin-bottom: 20px;
  padding: 20px 30px 18px 18px;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #2B3E50;
  font-style: italic;
}
.testimonial-card span {
  color: #53998D;
  font-weight: 600;
  font-size: 0.98rem;
}

/* =====================
   ADDRESS/STANDARD ICONS
   ===================== */
address img {
  vertical-align: middle;
  margin-right: 8px;
  height: 19px;
  width: 19px;
}
address a {
  color: #53998D;
  text-decoration: underline;
  transition: color 0.16s;
}
address a:hover, address a:focus {
  color: #2B3E50;
}

/* =====================
   MISC CLASSES, CARDS
   ===================== */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(43,62,80,0.10);
  margin-bottom: 20px;
  padding: 26px 22px;
}
.card h3 {
  font-size: 1.28rem;
}
.card p {
  color: #2B3E50;
}

/* =====================
   BUTTONS
   ===================== */
button, .cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.21s;
  letter-spacing: 0.02em;
  outline: none;
}
button:active, .cta-button:active {
  filter: brightness(.97);
}

/* =====================
   FORM ELEMENTS (if any)
   ===================== */
input, textarea, select {
  border-radius: 9px;
  border: 1px solid #D9E6E0;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: #fff;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #53998D;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  background: #fffbe9;
  color: #2B3E50;
  padding: 22px 20px;
  box-shadow: 0 -4px 18px 0 rgba(43,62,80,0.12);
  border-radius: 22px 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 98vw;
  margin: 0 auto;
  transition: transform 0.35s, opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #2B3E50;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.cookie-banner button {
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 21px;
  background: #53998D;
  color: #fff;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #2B3E50;
  border: 1px solid #53998D;
}
.cookie-banner button.cookie-settings {
  background: #FFE3B5;
  color: #2B3E50;
  border: 1px solid #FFE3B5;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2B3E50;
  color: #fff;
}
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-reject:focus {
  background: #D9E6E0;
  color: #2B3E50;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #2B3E50;
  color: #FFE3B5;
}
@media (max-width: 700px) {
  .cookie-banner { padding: 16px 6px; }
  .cookie-banner .cookie-btn-group { gap: 6px; }
}

/* =====================
   COOKIE PREFERENCES MODAL
   ===================== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(43,62,80,0.61);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fffbe9;
  border-radius: 24px;
  padding: 34px 28px 22px 28px;
  max-width: 96vw;
  width: 360px;
  box-shadow: 0 4px 18px 0 rgba(43,62,80,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalIn 0.26s cubic-bezier(.36,.69,.5,1.2);
}
@keyframes modalIn {
  from { transform: translateY(60px) scale(.91); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 0.99rem;
  font-weight: 600;
  color: #2B3E50;
  cursor: pointer;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #D9E6E0;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s, background 0.18s;
  box-shadow: 0 1px 4px 0 rgba(43,62,80,0.08);
}
.cookie-toggle input:checked + .slider {
  left: 20px;
  background: #53998D;
}
.cookie-modal-options {
  margin: 8px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal button {
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal button.accept { background: #53998D; color: #fff; }
.cookie-modal button.accept:hover { background: #2B3E50; color: #fff; }
.cookie-modal button.reject { background: #fff; color: #2B3E50; border: 1px solid #2B3E50; }
.cookie-modal button.reject:hover { background: #D9E6E0; color: #2B3E50; }

.cookie-modal .close-modal {
  position: absolute;
  top: 9px; right: 15px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #2B3E50;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
  transition: color 0.16s, background 0.15s;
  z-index: 2022;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F6EBD9;
  color: #53998D;
}

@media (max-width: 420px) {
  .cookie-modal { padding: 16px 3vw; width: 93vw; }
  .cookie-modal .modal-actions { flex-direction: column; }
}

/* =====================
   MICRO-INTERACTIONS
   ===================== */
.cta-button, .cookie-banner button, .cookie-modal button {
  transition: background 0.17s, color 0.16s, box-shadow 0.13s, transform 0.12s;
}
.cta-button:active, .cookie-banner button:active, .cookie-modal button:active {
  transform: translateY(2px) scale(.98);
}
.card:hover, .feature:hover {
  box-shadow: 0 4px 16px 0 rgba(83,153,141,0.13);
  transform: translateY(-2px) scale(1.014);
  transition: box-shadow 0.16s, transform 0.13s;
}

/* =====================
   VISUAL DETAILS
   ===================== */
.section, .card, .feature, .testimonial-card, .cookie-modal, .cookie-banner {
  border-radius: 19px;
}

/* =====================
   ACCESSIBILITY
   ===================== */
:focus {
  outline: 2px dashed #53998D;
  outline-offset: 1px;
}

/* =====================
   NO GRID/COLUMN LAYOUTS
   ===================== */
/* All layouts above use only flexbox. */
