/* ===================================================================
   = RESET & BASELINE NORMALIZATION (mobile-first) =
   =================================================================== */
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, input, textarea,
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;
  line-height: 1.15;
}
body {
  background: #f1fcff;
  color: #185e8a;
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: #2c8973;
  text-decoration: none;
  transition: color .25s;
}
a:hover, a:focus {
  color: #185e8a;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===================================================================
   = BRAND TYPOGRAPHY =
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #185e8a;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

p, li, dt, dd {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  color: #24475c;
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
strong {
  color: #2c8973;
  font-weight: 700;
}
blockquote {
  position: relative;
  font-style: italic;
  color: #2c8973;
  background: #e8fafb;
  border-left: 4px solid #2c8973;
  padding: 16px 30px 16px 18px;
  border-radius: 16px;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Artistic font for headings */
h1, .cta-btn {
  letter-spacing: .03em;
  text-shadow: 1px 2px 12px #c3f3ef20, 0 1px 0 #fff;
}

/* ===================================================================
   = FLEXBOX LAYOUTS & SECTION SPACING =
   =================================================================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 30px;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgb(24 94 138 / 10%);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
  padding: 28px 24px 24px 28px;
}
.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;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e8fafb;
  box-shadow: 0 4px 16px 0 #185e8a18;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 520px;
  margin-right: 20px;
}
.testimonial-card:last-child {
  margin-right: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  flex: 1 1 250px;
  background: #f6fdff;
  padding: 24px 22px 18px 22px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 #2c897325;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 28px 0 #185e8a33;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===================================================================
   = HEADER & NAVIGATION STYLES =
   =================================================================== */
header {
  background: #e8fafb;
  box-shadow: 0 5px 32px 0 #185e8a14;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #185e8a;
  padding: 6px 10px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  transition: background .17s, color .17s;
}
nav a:hover, nav a:focus {
  background: #2c897319;
  color: #2c8973;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #185e8a;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 13px 35px;
  box-shadow: 0 6px 16px 0 #185e8a31;
  cursor: pointer;
  outline: none;
  transition: background .15s, transform .16s, box-shadow .15s;
  margin-left: 22px;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2c8973;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 13px 32px 0 #2c89733a;
}

header img {
  max-height: 32px;
  margin-right: 24px;
}

/* Burger button */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2c8973;
  outline: none;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2c897318;
}

/* Hide on desktop */
.mobile-menu-toggle {
  display: inline-flex;
}
nav {
  display: none;
}
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
  nav {
    display: flex;
  }
}

/* ===================================================================
   = MOBILE MENU DRAWER =
   =================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #185e8aee;
  box-shadow: 0 0 44px #185e8a70, 0 6px 24px #2c897380;
  z-index: 500;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.8,.1,.4,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  z-index: 510;
  cursor: pointer;
  padding: 10px;
  border-radius: 3px;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2c89737b;
}
.mobile-nav {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
  padding: 0 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color .16s, text-shadow .16s;
  text-shadow: 0 4px 24px #185e8a57;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #e8fafb;
  text-shadow: 0 0 8px #2c8973;
}

/* mobile menu overlay controls rest of the page */
body.menu-open {
  overflow: hidden;
}

/* ===================================================================
   = FLEX LAYOUT UTILITIES & RESPONSIVE =
   =================================================================== */
@media (max-width: 1000px) {
  .content-grid, .features-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .section, section {
    padding: 30px 7px;
  }
  .container {
    padding: 0 5px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .cta-btn {
    padding: 12px 22px;
    font-size: 1rem;
  }
  .features-grid > div, .card {
    padding: 18px 10px;
    min-width: 0;
    border-radius: 14px;
  }
}

/* ===================================================================
   = CARD & FEATURE ELEMENTS =
   =================================================================== */
ul, ol, dl {
  margin-bottom: 16px;
}
li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
li img {
  width: 32px;
  height: 32px;
}

/* FAQ (Guide, Services) */
dt {
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  color: #185e8a;
}
dd {
  margin-bottom: 18px;
  margin-left: 10px;
}

/* Artistic section backgrounds for whimsy */
section:nth-child(even) {
  background: #e8fafb;
  box-shadow: 0 0 40px #2c89731c;
}
section:nth-child(odd) {
  background: #fff;
  box-shadow: 0 0 32px #185e8a0d;
}

/* ===================================================================
   = TESTIMONIALS =
   =================================================================== */
.testimonial-card {
  box-shadow: 0 2px 16px #24475c21;
  border: 2px solid #fff;
  border-left: 5px solid #2c8973;
  background: #e8fafb !important;
  color: #185e8a;
  font-size: 1.08rem;
  min-width: 260px;
}
.testimonial-author {
  color: #202f3b;
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 0;
}
.testimonial-rating {
  font-size: 1.3rem;
  color: #2c8973;
}

/* ===================================================================
   = FOOTER =
   =================================================================== */
footer {
  background: #185e8a;
  color: #fff;
  padding: 42px 0 0 0;
  margin-top: 70px;
}
footer .container {
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
footer img {
  max-height: 38px;
  margin-bottom: 13px;
}
footer nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 0;
}
footer nav a {
  color: #e8fafb;
  background: #2c8973;
  padding: 5px 18px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  transition: background .14s;
}
footer nav a:hover, footer nav a:focus {
  background: #fff;
  color: #185e8a;
}
.footer-copy {
  text-align: center;
  color: #e8fafbcc;
  font-size: 0.89rem;
  margin-top: 20px;
  margin-bottom: 17px;
}
footer p {
  color: #e8fafb;
  font-size: 1rem;
}

/* ===================================================================
   = BUTTONS & FORM CONTROLS =
   =================================================================== */
button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #2c8973;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  margin-right: 13px;
  margin-bottom: 12px;
  transition: background .16s, transform .15s, box-shadow .14s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #185e8a;
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 5px 20px #185e8a31;
}
input[type="search"] {
  width: 100%;
  border: 2px solid #2c8973;
  border-radius: 40px;
  padding: 8px 24px;
  font-size: 1rem;
  outline: none;
  transition: border .13s;
  background: #f4fcfd;
  margin-top: 12px;
  margin-bottom: 14px;
}
input[type="search"]:focus {
  border-color: #185e8a;
}

/* ===================================================================
   = COOKIE CONSENT BANNER & MODAL =
   =================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #24475c;
  color: #e8fafb;
  box-shadow: 0 -6px 36px 0 #185e8a25;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 25px 28px;
  z-index: 10000;
  font-size: 1rem;
  gap: 24px;
  transition: transform .32s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  min-width: 110px;
  margin-bottom: 0;
  background: #2c8973;
}
.cookie-banner button.accept {
  background: #2c8973;
  color: #fff;
}
.cookie-banner button.reject {
  background: #e8fafb;
  color: #185e8a;
}
.cookie-banner button.settings {
  background: transparent;
  color: #e8fafb;
  border: 2px solid #2c8973;
}
.cookie-banner button.settings:hover {
  background: #2c8973;
  color: #fff;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #24475caa;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-inner {
  background: #fff;
  color: #185e8a;
  border-radius: 22px;
  box-shadow: 0 8px 42px #185e8a55;
  max-width: 360px;
  width: 97vw;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 20px;
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c8973;
}
.cookie-modal-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #2c8973;
  transform: scale(1.2);
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: #185e8a;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover {
  color: #2c8973;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  min-width: 100px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 6vw 13px 5vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions { gap: 10px; }
}

/* ===================================================================
   = MICRO-INTERACTIONS & HOVER EFFECTS =
   =================================================================== */
.card, .features-grid > div, .testimonial-card {
  transition: box-shadow .2s, transform .17s;
}
.card:hover, .features-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 34px 0 #2c89733b, 0 3px 7px #185e8a17;
  transform: translateY(-4px) scale(1.025);
}

.section {
  overflow: visible;
  transition: box-shadow .22s;
}
.section:hover {
  box-shadow: 0 16px 32px #185e8a1c;
}

/* Artistic floating shapes as deco elements (for demonstration) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -30px; left: -30px;
  width: 54px; height: 54px;
  background: #2c89731a;
  border-radius: 44% 56% 46% 54% / 60% 40% 60% 40%;
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -26px; right: -22px;
  width: 34px; height: 34px;
  background: #e8fafb88;
  border-radius: 62% 38% 39% 61% / 43% 69% 31% 57%;
  z-index: 0;
  pointer-events: none;
}

.section .content-wrapper, .section * {
  position: relative;
  z-index: 2;
}

/* ===================================================================
   = SCROLLBAR (ARTISTIC, MODERN) =
   =================================================================== */
::-webkit-scrollbar { width: 13px; background: #e8fafb; }
::-webkit-scrollbar-thumb {
  background: #185e8acc;
  border-radius: 7px;
  box-shadow: 0 1px 6px 0 #2c897350;
}
::-webkit-scrollbar-thumb:hover { background: #2c8973dd; }

/* ===================================================================
   = MISC. =
   =================================================================== */
hr {
  border: 0;
  height: 1px;
  background: #e8fafb;
  margin: 24px 0;
}

/* ========== END OF STYLE.CSS ========== */
