/* =========================
   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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: linear-gradient(135deg, #f7fafc 0%, #FEFFFF 100%);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #17252A;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =========================
   TYPOGRAPHY
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:600,700|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #17252A;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #3AAFA9;
  margin-bottom: 16px;
  margin-top: 2px;
}
p, li, label {
  font-size: 1rem;
  color: #17252A;
  line-height: 1.65;
}
strong {
  font-weight: 700;
}

/* =========================
   LAYOUT CONTAINERS (Flexbox Only)
   ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f9fbfc 80%, #e3fafc 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(58,175,169,0.07);
}
.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 10px rgba(23,37,42,0.07);
  transition: box-shadow .3s, transform .3s;
  min-width: 260px;
  flex: 1 1 340px;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(23,37,42,0.18);
  transform: translateY(-4px) scale(1.015);
}
.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;
  margin-bottom: 24px;
  background: #FEFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(23,37,42,0.09);
  border-left: 4px solid #3AAFA9;
  transition: box-shadow .3s, border-color .3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(23,37,42,0.13);
  border-left-color: #17252A;
}
.testimonial-card p {
  color: #17252A;
  font-size: 1.12rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #3AAFA9;
  font-family: 'Open Sans', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-bottom: 8px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #17252A;
  background: #FEFFFF;
  padding: 8px 14px 8px 10px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(58,175,169,0.03);
  min-width: 230px;
}
.features-list img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.map-placeholder {
  background: #ECF5F3;
  color: #3AAFA9;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: center;
}

/* ===========
   CALL TO ACTION BUTTONS
   =========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #3AAFA9 0%, #17252A 100%);
  color: #FEFFFF;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 32px;
  box-shadow: 0 3px 12px rgba(58,175,169,.13);
  transition: background .3s, color .3s, box-shadow .3s, transform .2s;
  border: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #17252A 0%, #3AAFA9 100%);
  color: #FEFFFF;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(58,175,169,.21);
  outline: none;
}

/* ===========
   HEADER & NAV
   =========== */
header {
  background: linear-gradient(90deg,#FEFFFF 70%,#ecf5f3 100%);
  box-shadow: 0 4px 24px rgba(58,175,169,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px 16px 20px;
}
nav > a > img {
  height: 38px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 24px;
}
nav li {
  display: flex;
  align-items: center;
}
nav li a {
  color: #17252A;
  font-weight: 600;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 6px 8px;
  border-radius: 12px;
  transition: background .23s, color .17s;
}
nav li a:hover, nav li a:focus {
  color: #3AAFA9;
  background: #F2F8F6;
  outline: none;
}
nav .cta-button {
  margin-left: 20px;
  height: 44px;
  font-size: 1.08rem;
  padding: 0 22px;
}

/* ===========
   MOBILE MENU
   =========== */
.mobile-menu-toggle {
  display: none;
  background: #3AAFA9;
  color: #FEFFFF;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 64;
  align-items: center;
  justify-content: center;
  transition: background .26s, color .19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #17252A;
  color: #FEFFFF;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 102vw;
  height: 100vh;
  background: linear-gradient(130deg, #3AAFA9 10%, #FEFFFF 100%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform .38s cubic-bezier(.75,0,.23,1), opacity .32s;
  box-shadow: 0 2px 32px #3AAFA911;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #17252A;
  color: #FEFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 22px 28px 14px 0;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  text-align: center;
  border: none;
  transition: background .18s, color .09s;
  z-index: 100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3AAFA9;
  color: #17252A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: center;
  padding-top: 12px;
}
.mobile-nav a {
  color: #1b4746;
  background: #FEFFFF;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 12px;
  transition: background .2s, color .19s;
  margin-bottom: 9px;
  width: 92%;
  text-align: center;
  letter-spacing: 0.06em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e0f7f5;
  color: #3AAFA9;
  outline: none;
}

/* ===========
   MAIN & SECTIONS
   =========== */
main {
  margin-top: 0;
  margin-bottom: 40px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
.text-section {
  padding: 20px 20px 16px 20px;
}
.content-wrapper.text-section {
  gap: 15px;
}
.pricing, .pricing-summary {
  background: #e4f8f7;
  color: #17252A;
  font-weight: 600;
  margin: 12px 0 8px 0;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 1.07rem;
  border-left: 3px solid #3AAFA9;
}
.style-description {
  color: #3AAFA9;
  font-style: italic;
  font-size: 1.06rem;
}
.contact-info-extra {
  background: #ECF5F3;
  color: #3AAFA9;
  padding: 18px 16px;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 24px;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: linear-gradient(90deg, #f5fefe 60%, #e6fdf7 100%);
  box-shadow: 0 -2px 24px rgba(58,175,169,0.07);
  padding-top: 30px;
  padding-bottom: 18px;
  margin-top: 45px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 8px;
  font-size: 0.99rem;
  color: #3AAFA9;
  justify-content: center;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-menu a {
  color: #17252A;
  opacity: 0.85;
  padding: 0 5px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #3AAFA9;
  opacity: 1;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.footer-info img {
  height: 40px; 
}
.footer-info p {
  font-size: 0.98rem;
  color: #314950;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-social a {
  display: inline-flex;
  background: #3AAFA9;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: background .19s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #17252A;
}
.footer-social img {
  width: 21px;
  height: 21px;
  filter: brightness(142%) contrast(106%);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  background: #17252A;
  color: #FEFFFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 18px 20px 18px;
  gap: 16px;
  box-shadow: 0 -18px 42px rgba(23,37,42,0.1);
  font-size: 1.05rem;
  transition: transform 0.37s cubic-bezier(.68,0,.34,1);
}
.cookie-banner.hide {
  transform: translateY(200px);
}
.cookie-banner .cookie-message {
  flex: 1 1 210px;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #3AAFA9;
  color: #fff;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Josefin Sans', Arial, sans-serif;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.5px 2.5px #1b47456a;
  font-weight: 600;
  transition: background .19s, color .14s, box-shadow .17s, transform .16s;
}
.cookie-btn.settings {
  background: #ECF5F3;
  color: #17252A;
}
.cookie-btn.reject {
  background: #EEEEEE;
  color: #3AAFA9;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #17252A;
  color: #fff;
  outline: none;
  transform: scale(1.035);
}
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23,37,42,0.52);
  z-index: 250;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #1b4746;
  max-width: 410px;
  width: 98vw;
  padding: 30px 22px;
  border-radius: 32px 32px 4px 4px;
  box-shadow: 0 7px 41px #17252A15;
  margin: 0 16px 32px 0;
  animation: cookie-pop-in .3s cubic-bezier(.75,0,.23,1);
  font-size: 1.06rem;
}
@keyframes cookie-pop-in {
  from { transform: translateY(110vh) scale(.88); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: #3AAFA9;
  margin-bottom: 10px;
}
.cookie-modal .categories {
  margin-top: 14px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .category label {
  flex: 1 1 60%;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 41px;
  height: 24px;
  margin-right: 0;
}
.cookie-modal .switch input:disabled + .slider {
  background: #b2dfdb;
  cursor: not-allowed;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #3AAFA9;
  border-radius: 22px;
  transition: .2s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px; top: 3px;
  background: #FEFFFF;
  border-radius: 50%;
  transition: .24s;
}
.cookie-modal .switch input:checked + .slider {
  background: #17252A;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 24px;
}
.cookie-modal .modal-actions .cookie-btn {
  flex: 1;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: #3AAFA9;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #17252A;
  outline: none;
}

/* ===========
   ANIMATIONS
   =========== */
.cta-button, .features-list li, .testimonial-card, .card, .footer-social a, .mobile-nav a {
  transition: box-shadow .26s, color .19s, background .31s, transform .19s;
}
.cta-button:active,
.footer-social a:active,
.mobile-nav a:active {
  transform: scale(.97);
}
.section, .testimonial-card, .card {
  transition: box-shadow .3s, background .24s, transform .25s;
}

/* ================
   RESPONSIVENESS
   ================ */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  nav {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  nav {
    max-width: 95vw;
  }
  .card {
    flex: 1 1 270px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.43rem;
    margin-bottom: 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  nav ul, nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 30px;
    border-radius: 18px;
  }
  .content-wrapper, .content-wrapper.text-section {
    gap: 14px;
  }
  .content-grid,
  .card-container,
  .features-list {
    flex-direction: column;
    gap: 18px !important;
  }
  .testimonial-card,
  .card {
    min-width: 0;
    width: 100%;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    font-size: 0.98rem;
    padding: 20px 7px 16px 7px;
  }
  .cookie-banner .cookie-message {
    margin-right: 0;
  }
  .mobile-menu {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 12px 5px;
    width: 95%;
  }
  .pricing, .pricing-summary {
    font-size: 0.93rem;
    padding: 8px 10px;
  }
  .faq-card {
    padding: 14px !important;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.33rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .section {
    padding: 16px 2px;
  }
  .container {
    padding: 0 5px;
  }
  .footer-info img {
    height: 31px;
  }
  .footer-social {
    gap: 8px;
  }
  .cookie-modal {
    margin-right: 2px;
    padding: 21px 8px;
    border-radius: 17px 17px 4px 4px;
  }
  .cookie-banner {
    padding: 13px 3px 9px 3px;
  }
}

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