/* =============================================================
   CSS 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
body {
  line-height: 1.5;
  background: #fff;
  color: #2C3E50;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {max-width: 100%; display: block; vertical-align: middle;}
a {color: inherit; text-decoration: none; transition: color 0.2s;}
ul, ol {padding-left: 20px;}
li {margin-bottom: 8px;}
button, input[type="button"], input[type="submit"] {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
:focus { outline: 2px solid #1799B5; outline-offset: 2px; }

/* ================= BRAND TYPOGRAPHY ========================= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2C3E50;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.15; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.12rem; margin-bottom: 8px; }
p, ul, ol { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem;   }
strong { font-weight: 700; }

/* ================== CONTAINER & LAYOUT ====================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Container is column layout */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

/* ========================== HEADER ========================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #F2F6F8;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 0;
}
.logo-link img {
  height: 38px;
  width: auto;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
}
.main-nav a {
  padding: 6px 0;
  color: #2C3E50;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  border-radius: 3px;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  color: #1799B5;
  border-bottom: 2px solid #1799B5;
}
.main-nav .btn-primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.12rem;
  color: #2C3E50;
  z-index: 201;
  margin-left: 18px;
  transition: background 0.15s;
  border-radius: 6px;
  padding: 3px 9px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F2F6F8;
}

/* =========== MOBILE MENU =========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,80,0.98);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.85,0,.15,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  margin: 24px 28px 0 0;
  align-self: flex-end;
  transition: background 0.15s;
  padding: 6px 12px;
  border-radius: 6px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #1799B5;
}
.mobile-nav {
  margin: 48px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 3px;
  transition: background 0.15s, color 0.2s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #1799B5;
  color: #fff;
}
@media (max-width: 1000px) {
  .main-nav {
    gap: 16px;
    font-size: 1rem;
  }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle { display: block; }
}

/* ============ HERO ================== */
.hero {
  width: 100%;
  min-height: 304px;
  background: #F2F6F8;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 0 60px 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 { font-size: 2.2rem; color: #2C3E50;}
.hero p { font-size: 1.18rem; color: #2C3E50; max-width: 420px; }

/* ============= CTA (Call to Action) =============== */
.cta {
  background: #F2F6F8;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44,62,80,0.03);
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.cta h2 { color: #2C3E50; }

/* ================== FEATURES =================== */
.features, .advantages {
  background: #fff;
  margin-bottom: 60px;
}
.feature-grid, .service-grid, .benefits-grid, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}
.feature-item, .benefit-item, .tip-item, .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F2F6F8;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.05);
  padding: 24px 22px;
  min-width: 210px;
  min-height: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item:hover, .benefit-item:hover, .tip-item:hover, .service-card:hover {
  box-shadow: 0 4px 24px 0 rgba(44,62,80,0.09);
  transform: translateY(-3px) scale(1.02);
}
.feature-item img,
.benefit-item img,
.service-card img,
.tip-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.feature-item h3, .benefit-item h3, .service-card h3, .tip-item h3 {
  font-size: 1.15rem;
  color: #2C3E50;
}
.feature-item p, .benefit-item p, .service-card p, .tip-item p {
  color: #2C3E50;
  font-size: 1rem;
  opacity: 0.92;
}

/* ================== CARDS LAYOUTS =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44,62,80,0.07);
  padding: 30px 24px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ======================= TESTIMONIALS ========================= */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.09);
  border-radius: 15px;
  min-width: 260px;
  max-width: 415px;
  margin-bottom: 20px;
  color: #2C3E50;
  transition: box-shadow 0.17s, transform 0.16s;
}
.testimonial-card strong {
  color: #1799B5;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(44,62,80,0.19);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card p {
  color: #2C3E50;
}

/* =================== BUTTONS ====================== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 1.1rem;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  margin-top: 12px;
  margin-bottom: 6px;
  box-shadow: 0 2px 12px 0 rgba(23,153,181,0.08);
  cursor: pointer;
}
.btn-primary {
  background: #1799B5;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #2C3E50;
  color: #fff;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 5px 18px 0 rgba(23,153,181,0.15);
}
.btn-secondary {
  background: #F2F6F8;
  color: #1799B5;
  border: 1px solid #1799B5;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1799B5;
  color: #fff;
  border: 1px solid #1799B5;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 17px 0 rgba(23,153,181,0.14);
}

/* Tag-like pill for states */
.pill {
  display: inline-block;
  padding: 5px 12px;
  background: #F2F6F8;
  color: #1799B5;
  border-radius: 120px;
  font-size: 0.93rem;
}

/* ============== LISTS AND ACCORDION ============== */
.service-list, .question-list {
  margin-top: 18px;
  margin-bottom: 20px;
  list-style: disc inside;
}
.service-list li, .question-list li {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.faq-item {
  background: #F2F6F8;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 1px 6px 0 rgba(44,62,80,0.05);
  transition: box-shadow 0.14s;
}
.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1rem;
  color: #2C3E50;
}
.faq-item:hover {
  box-shadow: 0 4px 16px 0 rgba(44,62,80,0.09);
}
.search-box {
  width: 100%;
  max-width: 420px;
  padding: 10px 16px;
  border-radius: 7px;
  border: 1px solid #1799B5;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.13s;
}
.search-box:focus {
  border-color: #2C3E50;
}

/* ================== MAP/STATIC MAP ================== */
.static-map {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F2F6F8;
  padding: 20px;
  border-radius: 12px;
}
.static-map img {
  width: 40px;
  height: 40px;
}

/* ================ CONTACT & FOOTER =============== */
.contact-details {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  font-size: 1.06rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
  opacity: 0.84;
}

footer {
  width: 100%;
  background: #2C3E50;
  color: #F2F6F8;
  padding: 0 0 0 0;
  border-top: 1px solid #F2F6F8;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 48px 20px 30px 20px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-menu a {
  color: #F2F6F8;
  opacity: 0.84;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #1799B5;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
  opacity: 0.82;
}
.footer-contact a { color: #fff; text-decoration: underline; }
.footer-contact a:hover { color: #1799B5; }
.footer-copy {
  opacity: 0.7;
  font-size: 0.96rem;
  margin-top: 6px;
}

/* ===================== ABOUT, POLICIES, ETC. =================== */
.about-preview, .about, .gdpr, .privacy-policy, .cookies-policy, .terms, .thank-you {
  background: #fff;
  margin-bottom: 60px;
}
.about-preview .btn-secondary, .faq-preview .btn-secondary {
  margin-top: 14px;
}
.text-section {
  font-size: 1.1rem;
  color: #2C3E50;
  line-height: 1.66;
  max-width: 900px;
  margin-bottom: 14px;
}
.text-section ul { margin-bottom: 20px; }
.text-section li { font-size: 1.01rem; margin-bottom: 8px; }
.text-section a { color: #1799B5; text-decoration: underline; }
.text-section a:hover { color: #2C3E50; }

/* =================== THANK YOU PAGE =================== */
.thank-you .btn-primary {margin-top: 20px;}
.thank-you ul { margin-top: 14px; }

/* ================ RESPONSIVE FLEXBOX PATTERNS =================== */
@media (min-width: 900px) {
  .feature-grid, .service-grid, .benefits-grid, .tips-grid {
    flex-direction: row;
    justify-content: flex-start;
  }
  .card-container, .testimonial-slider, .faq-accordion {
    flex-direction: row;
  }
}
@media (max-width: 830px) {
  .feature-grid, .service-grid, .benefits-grid, .tips-grid, .testimonial-slider {
    flex-wrap: wrap;
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  .section { padding: 26px 7px; margin-bottom: 38px; }
  .hero { padding: 30px 0; min-height: 190px; }
  .cta { padding: 14px 6px; border-radius: 8px; }
  .feature-grid,.service-grid,.benefits-grid,.tips-grid,.testimonial-slider {
    gap: 12px;
  }
  .feature-item,
  .service-card,
  .benefit-item,
  .testimony-card,
  .tip-item {
    min-width: 0;
    padding: 16px 10px;
    border-radius: 7px;
  }
  h1 { font-size: 1.27rem; margin-bottom: 16px; }
  h2 { font-size: 1.10rem; margin-bottom: 13px; }
  .btn-primary, .btn-secondary { font-size: 0.97rem; padding: 10px 16px; }
}

/* =========== COOKIE CONSENT BANNER/BUTTONS =========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  width: 100%;
  background: #F2F6F8;
  color: #2C3E50;
  box-shadow: 0 -2px 12px 0 rgba(44,62,80,0.09);
  padding: 24px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.86,0,.07,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  max-width: 530px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.97rem;
  padding: 8px 18px;
  border-radius: 7px;
  box-shadow: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 9px 22px 9px;
    font-size: 0.96rem;
  }
  .cookie-banner__actions {
    gap: 11px;
  }
}

/* =========== COOKIE PREFERENCES MODAL =========== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,62,80,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 410;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open { opacity: 1; visibility: visible; }
.cookie-modal__window {
  background: #fff;
  max-width: 420px;
  width: 94vw;
  padding: 32px 22px 26px 22px;
  border-radius: 13px;
  box-shadow: 0 6px 64px 0 rgba(44,62,80,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideUpIn .3s cubic-bezier(0.57,0,.53,1.0);
}
@keyframes slideUpIn {
  from { transform: translateY(56px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__title { font-family: 'Montserrat', sans-serif; font-size: 1.18rem; font-weight: 600; color: #2C3E50; }
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.2rem;
  color: #2C3E50;
  background: none;
  border: none;
  padding: 3px 9px;
  border-radius: 4px;
  transition: background 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F2F6F8;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F2F6F8;
  padding: 8px 12px;
  border-radius: 6px;
}
.cookie-category label {
  font-size: 1rem;
  color: #2C3E50;
  flex: 1;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
}
.cookie-category.essential label {
  opacity: 0.7;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #1799B5;
}
.cookie-category input[type="checkbox"]:disabled { opacity: 0.40; }
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: flex-start;
  margin-top: 8px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  padding: 8px 18px; font-size: 0.95rem; border-radius: 7px;
  margin-top: 0; margin-bottom: 0;
}

/* ========== SCROLLBAR MINIMAL ========== */
*::-webkit-scrollbar { width: 8px; background: #F2F6F8; }
*::-webkit-scrollbar-thumb { background: #ddd; border-radius: 14px; }
*::-webkit-scrollbar-thumb:hover { background: #b4c1c8; }

/* ============== SECTION LAYOUTS FROM MANDATORY ============== */
.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;
}

/* =================== ANIMATIONS ===================== */
.btn-primary,
.btn-secondary,
.feature-item,
.service-card,
.testimonial-card,
.faq-item,
.cookie-banner,
.cookie-modal__window {
  transition: box-shadow 0.17s, background 0.20s, border 0.17s, color 0.19s, transform 0.14s, opacity 0.18s;
}

/* ================ END MAIN CSS ================ */
