/* CSS RESET & BASE TYPOGRAPHY */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  color: #174859;
  background: #FAF5E9;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #4A8697;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #174859;
  text-decoration: underline;
}
ul {
  list-style: disc inside;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #174859;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
h4 { font-size: 1rem; margin-bottom: 6px; }

p, span, li, a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2c3235;
}

strong, b { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(160,198,216,0.04);
}

.text-section {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* FLEXBOX LAYOUTS (CRITICAL) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(160,198,216,0.13);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(160,198,216,0.24);
  transform: translateY(-2px) 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: 10px;
  margin-bottom: 24px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #FAF5E9;
  color: #174859;
  box-shadow: 0 4px 20px rgba(160,198,216,0.10);
  font-size: 1.1rem;
  min-width: 0;
  transition: box-shadow 0.15s;
}
.testimonial-card span {
  color: #4A8697;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(160,198,216,0.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  background: #F6F9FC;
  border-radius: 18px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 2px 12px rgba(160,198,216,0.07);
  transition: box-shadow 0.18s, transform 0.17s;
  border: 1.5px solid #E6EFF4;
}
.feature-item:hover {
  box-shadow: 0 8px 22px rgba(160,198,216,0.16);
  transform: translateY(-2px) scale(1.02);
}
.feature-item h3 {
  color: #4A8697;
  font-weight: 600;
}
.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #FAF5E9 60%, #A0C6D8 120%);
  box-shadow: 0 4px 20px rgba(160,198,216,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px 16px 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: #174859;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6EFF4;
  color: #4A8697;
}
.main-nav .btn-primary {
  background: #A0C6D8;
  color: #134252;
  font-weight: 700;
  border-radius: 24px;
  padding: 9px 24px;
  font-size: 1.08rem;
  box-shadow: 0 1px 8px rgba(160,198,216,0.06);
  transition: background 0.18s, color 0.22s, transform 0.15s;
  margin-left: 8px;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #82b2cc;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

header img {
  height: 48px;
  width: auto;
  border-radius: 12px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  font-size: 2rem;
  background: #A0C6D8;
  color: #174859;
  border: none;
  border-radius: 12px;
  padding: 6px 12px;
  margin-left: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 8px rgba(160,198,216,0.09);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #4A8697;
  color: #fff;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(160,198,216,0.88);
  z-index: 2000;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.65,0,0.35,1), opacity 0.33s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 57px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 1.8rem;
  background: #FAF5E9;
  color: #174859;
  border: none;
  border-radius: 12px;
  padding: 6px 18px;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(160,198,216,0.13);
  z-index: 2001;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #4A8697;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  margin-top: 32px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #174859;
  background: transparent;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 2px;
  width: 80vw;
  display: block;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #4A8697;
  color: #fff;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav .btn-primary {
    padding: 9px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 840px) {
  .main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
  header img { height: 44px; }
}

/* NAV RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  header .container {
    flex-direction: row;
    padding: 8px 6px 8px 8px;
  }
}

/* HERO STYLES */
.hero {
  background: linear-gradient(100deg, #A0C6D8 18%, #FAF5E9 72%);
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 44px 0 33px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero .content-wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero h1 {
  color: #174859;
  font-size: 2.45rem;
}
.hero p {
  font-size: 1.18rem;
  color: #134252;
}
.hero .btn-primary {
  margin-top: 10px;
  align-self: flex-start;
}

/* BUTTONS */
.btn-primary {
  background: #A0C6D8;
  color: #134252;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 11px 32px;
  font-size: 1.13rem;
  box-shadow: 0 4px 18px rgba(160,198,216,0.14);
  cursor: pointer;
  transition: background 0.17s, color 0.22s, transform 0.13s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #4A8697;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #FFAFAE;
  color: #174859;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 1.06rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 14px rgba(200,160,175,0.10);
  transition: background 0.17s, color 0.18s, transform 0.12s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #f9d6d6;
  color: #174859;
  transform: scale(1.025);
}

/* FOOTER STYLES */
footer {
  background: #F6F9FC;
  border-top: 2px solid #A0C6D8;
  margin-top: 60px;
}
footer .container {
  display: flex;
}
footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  padding: 24px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 175px;
}
.footer-nav a {
  color: #174859;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 0 3px 0;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #4A8697;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #174859;
  gap: 9px;
  max-width: 320px;
}
.footer-contact img {
  width: 50px;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #4A8697;
  font-weight: 500;
  word-break: break-all;
}
.footer-contact a:hover {
  color: #174859;
}
.social-media {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}
.social-media a img {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: #A0C6D8;
  box-shadow: 0 1.5px 6px rgba(160,198,216,0.17);
  transition: background 0.2s;
}
.social-media a:hover img,
.social-media a:focus img {
  background: #4A8697;
}
.brand-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFAFAE;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
  margin-top: 8px;
}

@media (max-width: 980px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 650px) {
  .footer-contact, .brand-tagline {
    font-size: 0.93rem;
  }
}

/* COOKIE CONSENT STYLES */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 3000;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 24px rgba(160,198,216,0.15);
  padding: 24px 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.96rem;
  color: #134252;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1), opacity 0.24s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-content {
  max-width: 680px;
  flex: 1 1 60%;
  margin-right: 20px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn-cookie {
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 22px;
  margin-right: 3px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(160,198,216,0.07);
  transition: background 0.15s;
}
.cookie-banner .btn-accept {
  background: #A0C6D8;
  color: #174859;
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: #4A8697;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #FFAFAE;
  color: #174859;
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  background: #f9d6d6;
}
.cookie-banner .btn-settings {
  background: #F6F9FC;
  color: #174859;
  box-shadow: none;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: #A0C6D8;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3010;
  top:0; left:0; right:0; bottom:0;
  width:100vw;
  height:100vh;
  background: rgba(160,198,216,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 36px 26px 24px 26px;
  box-shadow: 0 8px 40px rgba(160,198,216,0.18);
  min-width: 300px;
  max-width: 90vw;
  width: 440px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: cookie-modal-fadeIn 0.3s cubic-bezier(0.76,0,0.24,1) 1;
}
@keyframes cookie-modal-fadeIn {
  from {opacity:0;transform:scale(0.98);}
  to {opacity:1;transform:scale(1);}
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 24px;
  background: #FAF5E9;
  color: #174859;
  border-radius: 9px;
  border: none;
  font-size: 1.4rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #4A8697;
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #174859;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0 9px 0;
  border-radius: 10px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #A0C6D8;
  border-radius: 6px;
  vertical-align: middle;
}
.cookie-category input[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.cookie-modal .btn-save {
  align-self: flex-end;
  background: #A0C6D8;
  color: #174859;
  padding: 9px 28px;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .btn-save:hover,
.cookie-modal .btn-save:focus {
  background: #4A8697;
  color: #fff;
}

/* SECTION AND CONTENT AREA SPACING (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/* GAPS AND CARD CONTAINERS (MANDATORY) */
.card-container,
.feature-grid,
.content-grid {
  gap: 24px;
}

/* Labels, FAQ, List Styles */
.text-section ul {
  margin-top: 9px;
  margin-bottom: 11px;
  padding-left: 22px;
  color: #296982;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.78;
}
.text-section li {
  margin-bottom: 6px;
}
.text-section li:last-child { margin-bottom: 0; }
.text-section h2, .text-section h3 { margin-top: 22px; }
.text-section h2:first-child,
.text-section h3:first-child {
  margin-top: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 990px) {
  .feature-grid, .card-container {
    gap: 16px;
  }
  .section {
    padding: 32px 8px;
    border-radius: 18px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .feature-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 16px;
  }
  .feature-grid > * { min-width: 0; width: 100%; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .content-wrapper, .feature-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 14px;
    align-items: stretch !important;
  }
  .testimonials .content-wrapper {
    gap: 18px;
  }
  .section, section {
    margin-bottom: 35px;
    padding: 24px 0;
    border-radius: 13px;
  }
  footer .content-wrapper { padding: 16px 0; }
  .testimonial-card { padding: 15px 11px; border-radius: 13px; }
  .feature-item {
    border-radius: 12px;
    padding: 16px 10px 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    min-height: 180px;
    padding: 32px 0 22px 0;
  }
  .hero h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.01rem; }
}
@media (max-width: 520px) {
  .footer-contact img { width: 34px; }
  .social-media a img { width: 26px; height: 26px; }
}

/* UTILITIES */
.bg-accent {
  background: #FAF5E9;
}
.text-primary {
  color: #174859;
}
.text-secondary {
  color: #A0C6D8;
}
.rounded {
  border-radius: 20px;
}
.shadow {
  box-shadow: 0 4px 18px rgba(160,198,216,0.10);
}

/* MICRO-INTERACTIONS */
.card,
.feature-item,
.testimonial-card,
.btn-primary,
.btn-secondary,
.main-nav a,
.mobile-menu-toggle,
.mobile-menu-close,
.social-media a img,
.cookie-banner .btn-cookie,
.cookie-modal .btn-save {
  transition: box-shadow 0.15s, background 0.17s, color 0.19s, transform 0.14s;
}

::-webkit-scrollbar {
  width: 10px;
  background: #FAF5E9;
}
::-webkit-scrollbar-thumb {
  background: #A0C6D8;
  border-radius: 7px;
}

/* SOFT_PASTEL DECORATIVE HOVER SHADOW */
.card:hover, .feature-item:hover, .testimonial-card:hover, .btn-primary:hover, .btn-secondary:hover {
  box-shadow: 0 8px 34px rgba(174,201,221,0.23), 0 0.5px 0.5px 0 #FFAFAE66 inset;
}

/* FORM ELEMENTS & FOCUS OUTLINES */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #A0C6D8;
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 1rem;
  color: #174859;
  background: #FAF5E9;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #4A8697;
  outline: none;
  box-shadow: 0 0 4px #A0C6D8;
}

/* NO CSS GRID OR COLUMNS USED (MANDATORY) */
/* ALL FLEXBOX LAYOUTS */
