/* ==========================================================
   CSS RESET & BASELINE 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;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #E5E9F2;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #E5E9F2;
  color: #083144;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Link styles */
a {
  color: #19A2B8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #083144;
  text-decoration: underline;
}

/* ==========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: -0.02em;
  color: #083144;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 21px;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.subheadline {
  font-size: 1.1rem;
  color: #19A2B8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
  font-weight: 500;
}

p, ul, ol {
  margin-bottom: 18px;
  color: #093a51;
}

ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 12px;
  font-size: 1rem;
}
strong, b {
  color: #083144;
  font-weight: 700;
}

.alert-info {
  background: #19A2B8;
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  margin-top: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(8, 49, 68, 0.10);
}

/* ==========================
   LAYOUT & CONTAINERS
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(8,49,68,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==========================
   FLEXBOX FOR ALL LAYOUTS
=========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 28px rgba(8,49,68,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 22px;
  min-width: 250px;
  flex: 1 1 260px;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(8,49,68,0.15);
}

.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

div.feature-grid, .service-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-box {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(8,49,68,0.07);
  padding: 26px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 200px;
  transition: box-shadow 0.22s, transform 0.28s;
}
.feature-box:hover {
  box-shadow: 0 8px 32px rgba(25, 162, 184, 0.13);
  transform: translateY(-4px) scale(1.01);
}
.service-card {
  flex: 1 1 220px;
  margin-bottom: 20px;
  padding: 26px 20px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(8,49,68,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(25, 162, 184, 0.13);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #f7fafc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(8,49,68,0.06);
  padding: 18px 24px;
  flex: 1 1 260px;
  margin-bottom: 20px;
}

.cta {
  background: linear-gradient(91deg, #19A2B8 0%, #083144 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 36px rgba(25,162,184,0.16);
  padding: 40px 20px;
  margin: 28px 0 60px 0;
}
.cta .content-wrapper h2,
.cta .content-wrapper .btn-primary {
  color: #fff;
}

/* ==========================
   HEADER & NAV
=========================== */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(8,49,68,0.06);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 75px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #083144;
  font-weight: 600;
  padding: 6px 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
header nav a:hover, header nav a:focus {
  color: #19A2B8;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, #19A2B8 0%, #083144 96%);
  padding: 12px 26px;
  border-radius: 28px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 3px 10px rgba(25,162,184,0.11);
  transition: background 0.22s, transform 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(92deg, #083144 0%, #19A2B8 96%);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #083144;
  border: 2px solid #19A2B8;
  background: #fff;
  padding: 10px 24px;
  border-radius: 28px;
  font-size: 1rem;
  transition: color 0.18s, background 0.18s, border 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #fff;
  background: #19A2B8;
  border-color: #083144;
}

/* ==========================
   HERO SECTION
=========================== */
.hero {
  padding: 0 0 40px 0;
  background: linear-gradient(96deg, #E5E9F2 60%, #19A2B8 100%);
}
.hero .container {
  min-height: 340px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}

/* ==========================
   TESTIMONIALS SECTION
=========================== */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials .container {
  gap: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 22px;
  background: #F7FAFC;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(8,49,68,0.07);
  min-width: 260px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  color: #163852;
  transition: box-shadow 0.16s;
}
.testimonial-card .stars {
  color: #19A2B8;
  font-size: 1.4em;
  margin-top: 5px;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #083144;
  font-size: 1.02em;
  font-style: italic;
  opacity: 0.78;
}

/* ==========================
   FOOTER
=========================== */
footer {
  background: #083144;
  color: #E5E9F2;
  padding: 44px 0 26px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  align-items: center;
}
.footer-nav a {
  color: #19A2B8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.18s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 9px;
  align-items: center;
  font-size: 1rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #eaf3f9;
}
.footer-contact a {
  color: #E5E9F2;
  opacity: 0.88;
}
.footer-copy {
  font-size: 0.95em;
  opacity: 0.75;
  margin-top: 10px;
  color: #E5E9F2;
}

/* ============== 
   TEXT SECTIONS
================= */
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===============
   Feature Items
================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===============
   OL/UL LIST
================== */
ol, ul {
  margin-bottom: 20px;
}

/* ===============
   RESPONSIVENESS
================== */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .feature-grid, .service-overview-grid, .testimonial-list, .faq-list {
    gap: 18px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; margin-bottom: 20px; }
  h2 { font-size: 1.3rem; margin-bottom: 15px; }
  h3 { font-size: 1.12rem; }
  
  .container {
    max-width: 97vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .cta {
    padding: 22px 7px;
    border-radius: 10px;
    margin-bottom: 34px;
  }
  .content-wrapper {
    gap: 6px;
  }
  .feature-grid, .service-overview-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 11px;
  }
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  header .container {
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 55px;
    gap: 7px;
  }
  .hero .container {
    padding-top: 18px;
    padding-bottom: 22px;
    min-height: 160px;
  }
  .text-image-section { flex-direction: column; gap: 12px; }
  header nav {
    display: none !important;
  }
  .footer-copy {
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .feature-box, .service-card, .testimonial-card, .faq-item, .card {
    min-width: 0;
    padding: 16px 8px 12px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 13px 0;
    font-size: 1rem;
  }
  .footer-contact, .footer-nav {
    font-size: 0.98rem;
  }
}

/* ==========================
   MOBILE MENU BURGER
=========================== */
.mobile-menu-toggle {
  background: linear-gradient(95deg, #19A2B8 65%, #083144 100%);
  color: #fff;
  border: none;
  font-size: 2.1em;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.18s, transform .2s;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1005;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #083144;
  outline: 2px solid #19A2B8;
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, header .btn-primary {
    display: none !important;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,49,68,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.9,0,.23,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2em;
  background: none;
  color: #19A2B8;
  border: none;
  margin: 30px 32px 22px 0;
  cursor: pointer;
  transition: color 0.14s;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: 2px solid #19A2B8;
}
.mobile-nav {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 18px;
  gap: 11px;
  padding: 0 32px;
  min-width: 220px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22em;
  font-weight: 500;
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid rgba(25,162,184,0.2);
  transition: background 0.16s, color 0.16s, padding-left .14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #19A2B8;
  color: #083144;
  padding-left: 18px;
  outline: none;
}

@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle, .mobile-menu-close { display: none !important; }
}

/* ==========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #083144;
  color: #E5E9F2;
  z-index: 4000;
  padding: 18px 10px 14px 10px;
  box-shadow: 0 -2px 24px rgba(8,49,68,0.10);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.25s cubic-bezier(.9,0,.23,1), opacity 0.17s;
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-content {
  flex: 1 1 220px;
  color: #E5E9F2;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-accept, .cookie-reject {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 18px;
  padding: 8px 21px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.17s, color 0.16s, transform 0.15s;
  outline: none;
}
.cookie-accept {
  background: linear-gradient(92deg, #19A2B8 0%, #083144 96%);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: linear-gradient(92deg, #083144 0%, #19A2B8 96%);
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #083144;
  border: 1.5px solid #19A2B8;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #19A2B8;
  color: #fff;
}
.cookie-settings {
  background: #19A2B8;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 21px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #083144;
  color: #19A2B8;
}

@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    padding: 14px 7px 8px 7px;
    gap: 8px;
    font-size: 14px;
  }
  .cookie-banner-buttons {
    gap: 7px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4100;
  background: rgba(8,49,68, 0.44);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInCookie 0.23s;
}
@keyframes fadeInCookie {
  0% { opacity: 0; } 
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #083144;
  border-radius: 16px;
  box-shadow: 0 8px 70px rgba(8,49,68,0.19);
  max-width: 370px;
  width: 96vw;
  padding: 32px 28px 19px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal h2 {
  color: #083144;
  font-size: 1.33rem;
  margin-bottom: 7px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1.04em;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E5E9F2;
  border-radius: 24px;
  transition: background 0.21s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #19A2B8;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal .cookie-close {
  background: none;
  color: #19A2B8;
  border: none;
  font-size: 1.8em;
  position: absolute;
  top: 14px;
  right: 19px;
  cursor: pointer;
  transition: color 0.12s;
  z-index: 2;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #083144;
  outline: 2px solid #19A2B8;
}

@media (max-width: 430px) {
  .cookie-modal {
    min-width: 0;
    padding: 17px 6px 13px 12px;
    font-size: 15px;
  }
}

/* ===============
   TRANSITIONS
================== */
.btn-primary, .btn-secondary, .feature-box, .service-card, .card, .testimonial-card, .faq-item {
  transition: box-shadow 0.22s, background 0.16s, color 0.14s, transform 0.20s;
}

/* ===============
  MICROINTERACTIONS
================== */
.feature-box img, .footer-contact img {
  transition: transform 0.16s, filter .17s;
}
.feature-box:hover img {
  transform: scale(1.04) rotate(-2deg);
  filter: brightness(1.13) contrast(1.2);
}

/* ===============
   VISUAL HIERARCHY
=================== */
.card h3, .feature-box h3, .service-card h2, .faq-item h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #19A2B8;
  font-weight: 700;
}
.card p, .feature-box p, .service-card p {
  font-size: 1rem;
  color: #083144;
  margin-bottom: 0;
}

/* ===============
   MISC
================== */
::-webkit-input-placeholder { color: #93B0BA; opacity: 1; }
::-moz-placeholder { color: #93B0BA; opacity: 1; }
:-ms-input-placeholder { color: #93B0BA; opacity: 1; }
::placeholder { color: #93B0BA; opacity: 1; }

[tabindex]:focus,
a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid #19A2B8;
  outline-offset: 2px;
}

/* Hide elements visually (for screen readers etc) */
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; border: 0 !important; }

/* ================
   END OF FILE
================== */
