/* 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F6F7FB;
  min-height: 100vh;
  color: #284055;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #254D7A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #537A5A;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #254D7A;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #35526c;
}
strong {
  color: #284055;
  font-weight: 700;
}

button, .cta {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 28px;
  background: #FFFFFF;
  color: #254D7A;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(55,70,90,0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
  margin-top: 8px;
  outline: none;
  text-decoration: none;
}
.cta.primary, button.primary {
  background: #254D7A;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(60,85,120,0.11);
}
.cta.primary:hover, .cta.primary:focus, button.primary:hover {
  background: #537A5A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px 0 rgba(83,122,90,0.12);
}
.cta:hover, button:hover, .cta:focus, button:focus {
  background: #F2EFEA;
  color: #254D7A;
  box-shadow: 0 2px 12px 0 rgba(80,90,110,0.10);
}
::-webkit-input-placeholder { color:#aaa; }
::-moz-placeholder { color:#aaa; }
:-ms-input-placeholder { color:#aaa; }
::placeholder { color: #aaa; }

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subheadline {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #537A5A;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  font-style: italic;
  font-weight: 500;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(117,146,183,0.10);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 10px 40px 0 rgba(90,110,160,0.13);
  transform: translateY(-2px) scale(1.03);
}
.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;
  background: #F2EFEA;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(111,151,147,0.06);
  margin-bottom: 24px;
  flex-direction: column;
  min-width: 260px;
  max-width: 440px;
  margin-right: 22px;
  color: #233144;
}
.testimonial-info {
  font-size: 1rem;
  font-style: italic;
  color: #537A5A;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(80,90,110,0.04);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  margin-bottom: 0;
}
.faq-item button {
  background: none;
  border: none;
  color: #254D7A;
  font-weight: 600;
  font-size: 1.08rem;
  text-align: left;
  width: 100%;
  padding: 0;
  cursor: pointer;
  transition: color 0.21s;
}
.faq-item button:focus {
  color: #537A5A;
  outline: none;
}
.faq-content {
  font-size: 1rem;
  color: #284055;
  margin-top: 8px;
  display: none;
}
.faq-item.open .faq-content {
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* NAVIGATION & HEADER */
header {
  width: 100%;
  background: linear-gradient(180deg, #F6F7FB 80%, #fff 100%);
  padding: 0;
  box-shadow: 0 1px 12px 0 rgba(162,181,200,0.045);
  position: relative;
  z-index: 500;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 18px 20px 16px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  color: #284055;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #537A5A;
  border-bottom: 2px solid #aedde7;
  outline: none;
}
header img {
  height: 46px;
  width: auto;
}

.cta.primary {
  margin-left: 24px;
  white-space: nowrap;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 1201;
  background: #fff;
  border: none;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  font-size: 2rem;
  color: #254D7A;
  box-shadow: 0 2px 8px 0 rgba(55,70,90,0.11);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2EFEA;
  color: #537A5A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(245,245,250,0.98);
  box-shadow: 0 4px 30px 0 rgba(111,151,147,0.12);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 48px;
  padding-left: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.66,.02,.42,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 1202;
  border: none;
  background: #fff;
  border-radius: 50%;
  color: #254D7A;
  font-size: 1.8rem;
  width: 42px;
  height: 42px;
  box-shadow: 0 2px 10px 0 rgba(60,70,88,0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2EFEA;
  color: #537A5A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 16px 30px;
  padding: 0;
}
.mobile-nav a {
  padding: 16px 0;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #254D7A;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: 100%;
  transition: color 0.19s, background 0.19s;
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2EFEA;
  color: #537A5A;
}

/* Hide desktop nav, show burger on mobile */
@media (max-width: 900px) {
  header .container nav,
  .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* MAIN SECTION SPACING */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(180deg,#ffffff 60%, #FAFAFC 100%);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(128,163,189,0.06);
}

/* FOOTER */
footer {
  background: #F2EFEA;
  padding: 32px 0 0 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -2px 16px 0 rgba(122,151,137,0.07);
  font-size: 1rem;
  color: #254D7A;
}
footer .container {
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #35526c;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 3px 0;
  text-decoration: none;
  transition: color 0.14s;
}
footer nav a:hover {
  color: #537A5A;
  text-decoration: underline;
}
footer img {
  height: 40px;
  width: auto;
}
footer .contact-information {
  font-size: 0.90rem;
  color: #537A5A;
  margin-top: 4px;
  line-height: 1.5;
}
footer small {
  color: #76889b;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

/* CARDS AND LISTS */
ul, ol {
  margin: 0 0 16px 0;
}
ul li, ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  color: #35526c;
  font-size: 1rem;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2e3ee;
  position: absolute;
  left: 0;
  top: 7px;
}
ol li:before {
  content: none;
}
ul li strong {
  color: #254D7A;
}

.map-snippet {
  margin-top: 18px;
  padding: 16px 18px;
  background: #F7F9FB;
  border-radius: 12px;
  color: #537A5A;
  box-shadow: 0 2px 8px 0 rgba(120, 130, 150, 0.04);
  font-size: 1rem;
}

/* FORM & INPUTS (if any) */
input, textarea, select {
  font-family: inherit;
  border-radius: 9px;
  border: 1px solid #dde3eb;
  padding: 10px 14px;
  font-size: 1rem;
  background: #fff;
  color: #254D7A;
  margin-bottom: 12px;
  transition: border-color 0.18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #537A5A;
}

/* COOKIES BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #FFF;
  box-shadow: 0 -6px 30px 0 rgba(82,120,102,0.09);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 30px 22px 30px;
  z-index: 1400;
  gap: 30px;
  animation: slideUpBanner 0.5s;
}
@keyframes slideUpBanner { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner p {
  color: #254D7A;
  margin-right: 12px;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(80,100,137,0.08);
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .accept {
  background: #254D7A;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus { background: #537A5A; }
.cookie-banner .reject {
  background: #cccfd2;
  color: #254D7A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus { background: #b9bece; }
.cookie-banner .settings {
  background: #fff;
  color: #254D7A;
  border: 1px solid #dee3e9;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus { background: #faf7f1; }

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1800;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(90,110,120,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.23s;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 38px 0 rgba(83,122,90,0.13);
  padding: 34px 32px 28px 32px;
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
.cookie-modal-content h3 {
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #537A5A;
  width: 22px;
  height: 22px;
}
.cookie-category label {
  font-size: 1rem;
  color: #284055;
}
.cookie-category .essential {
  font-weight: 600;
  color: #254D7A;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  color: #254D7A;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(144,160,175,0.10);
  transition: background 0.14s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #edefed;
  color: #537A5A;
}

/* THANK YOU PAGE */
.thankyou {
  text-align: center;
  padding: 56px 22px;
  background: linear-gradient(180deg, #E8F1FA 80%, #fff 100%);
  border-radius: 28px;
  box-shadow: 0 3px 18px 0 rgba(80,90,110,0.07);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1120px) {
  .container, .footer .container {
    max-width: 97vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .container, footer .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  main > section, .section {
    padding: 30px 6px;
    border-radius: 12px;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    min-width: unset;
  }
  .testimonial-card {
    max-width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  main > section, .section {
    padding: 24px 6px 28px 6px;
    border-radius: 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-item {
    min-width: 90vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 10px 18px 10px;
    gap: 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 12px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.11rem; }
  .card, .testimonial-card {
    padding: 14px 10px;
    min-width: unset;
    max-width: 100vw;
  }
}

/* PASTEL COLORS & STYLISTIC BACKGROUNDS */
body {
  background: linear-gradient(180deg,#FEF8F4 38%, #F2EFEA 100%);
}
.section:not(:last-child) {
  background: linear-gradient(180deg, #FFFFFF 80%, #F7F6FB 100%);
}
main > section:nth-child(odd) {
  background: linear-gradient(100deg, #FFFAF3 60%, #F7FCF8 100%);
}
main > section:nth-child(even) {
  background: linear-gradient(113deg, #F2EFEA 70%, #F7F9FC 100%);
}

/* DREAMY, SOFT SHADOWS */
.card, .testimonial-card, .faq-item, .map-snippet {
  box-shadow: 0 2px 16px 0 rgba(113,163,183,0.07);
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta, button, .faq-item button {
  transition: background 0.16s, color 0.19s, box-shadow 0.18s, transform 0.17s;
}
.cta:active, button:active {
  transform: scale(0.97);
}
.card:hover, .faq-item:hover {
  box-shadow: 0 6px 36px 0 rgba(91, 121, 147, 0.11);
}

/* VISUAL HIERARCHY & SPACING */
main > section, .section {
  margin-top: 0;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .testimonial-card {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.feature-item, .faq-item {
  margin-bottom: 20px;
}

/* Typography */
h1, h2, h3, .subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
p, li, span, a, small {
  font-family: 'Roboto', Arial, sans-serif;
}


/* === END === */
