/* 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,
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #14222A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #19647E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #328ba8;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  display: block;
}

/* FONT FACE (improve rendering on first paint) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #082636;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 13px;
}
@media (min-width: 769px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.35rem; }
}

p, li, label, strong {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1c3642;
  font-size: 1rem;
}
.privacy-hint {
  font-size: 0.9rem;
  color: #314259;
}
.subheadline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #19647E;
  margin-bottom: 25px;
  letter-spacing: 0.01em;
}

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

/* Structured Section Spacing per SPEC */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* LAYOUTS / FLEXBOX STRUCTURE */
.card-container,
.feature-grid,
.card-grid,
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25, 100, 126, 0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(25,100,126,0.19);
  transform: translateY(-4px) scale(1.017);
}
.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;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F3D9;
  border-left: 6px solid #19647E;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(25, 100, 126, 0.06);
  max-width: 650px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card p {
  color: #153444;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: #19647E;
  font-size: 1em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(25, 100, 126, 0.10);
  border-color: #92DCE5;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9FAFA;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(25, 100, 126, 0.06);
  padding: 24px;
  min-width: 216px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 2px solid transparent;
  margin-bottom: 20px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px #92DCE550);
  background: #E9FAFF;
  border-radius: 50%;
  padding: 8px;
}
.feature-item h3 {
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 6px 22px rgba(25, 100, 126, 0.10);
  border: 2px solid #19647E;
  background: #fff;
  transform: translateY(-4px) scale(1.01);
  cursor: pointer;
}

/* HERO SECTION / CTA */
.hero-section {
  background: #19647E;
  color: #fff;
  border-radius: 0 0 56px 56px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px 0;
  box-shadow: 0 10px 32px rgba(25, 100, 126, 0.11);
  z-index: 1;
}
.hero-section h1,
.hero-section .subheadline {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.09);
}
.hero-section .btn-primary {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .hero-section {
    border-radius: 0 0 34px 34px;
    padding: 36px 0 32px 0;
    margin-bottom: 34px;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
}

/* TEXTUAL SECTIONS */
.text-section {
  background: #F2F3D9;
  border-radius: 20px;
  padding: 36px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(146, 220, 229, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 480px) {
  .text-section {
    padding: 22px 8px;
  }
}

.contact-block {
  margin-top: 12px;
  margin-bottom: 16px;
}
.contact-block a {
  color: #19647E;
  font-weight: 500;
  word-break: break-all;
}

/* BUTTON STYLES */
.btn-primary {
  background: #19647E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 12px;
  padding: 13px 36px;
  margin: 10px 0 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(25, 100, 126, 0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.15s;
  outline: none;
  border-bottom: 3px solid #153444;
}
.btn-primary:focus, .btn-primary:hover {
  background: #092c39;
  color: #92DCE5;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 6px 18px rgba(25, 100, 126, 0.25);
}
.btn-secondary {
  background: #92DCE5;
  color: #19647E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  border: none;
  border-radius: 12px;
  transition: background 0.17s, color 0.17s;
  margin-right: 12px;
  outline: none;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: #19647E;
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #19647E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  border: 1.5px solid #92DCE5;
  border-radius: 12px;
  margin-right: 12px;
  transition: border 0.18s, color 0.18s, background 0.18s;
  outline: none;
}
.btn-light:focus, .btn-light:hover {
  background: #92DCE5;
  color: #092c39;
  border: 1.5px solid #19647E;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0;
  background: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #f1f5f6;
  position:relative;
}
.main-nav a {
  color: #19647E;
  font-size: 1.04rem;
  letter-spacing: 0.012em;
  padding: 7px 8px;
  border-radius: 8px;
  transition: background 0.16s, color 0.14s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  color: #fff;
  background: #19647E;
  text-decoration: none;
}
.main-nav a.btn-primary {
  margin-left: auto;
}
.main-nav img {
  width: 46px;
  height: 46px;
  display: block;
  margin-right: 16px;
}

/* FOOTER */
footer {
  margin-top: 60px;
  background: #19647E;
  color: #fff;
  padding: 36px 0 17px 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -5px 20px rgba(25,100,126,0.07);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #92DCE5;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
}
.footer-meta {
  font-size: 0.9rem;
  color: #EEF9FC;
}

/* MOBILE NAV STYLES */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1201;
  background: #19647E;
  color: #fff;
  border: none;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(25, 100, 126, 0.11);
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #092c39;
  color: #92DCE5;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #19647E;
  color: #fff;
  box-shadow: 0 0 36px 12px rgba(25,100,126,0.19);
  z-index: 1200;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.44, 0.09, 0.27, 1.18), opacity 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 70px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 23px;
  right: 21px;
  background: #fff;
  color: #19647E;
  border: none;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1240;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(146, 220, 229, 0.13);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #92DCE5;
  color: #082636;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 15px 38px 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1.2px solid #348ca81a;
  border-radius: 0;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #092c39;
  color: #92DCE5;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 780px) {
  .main-nav {
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 4px;
  }
}
@media (max-width: 850px) {
  .main-nav a.btn-primary {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .footer-contact, .footer-meta {
    font-size: 0.93rem;
  }
}

/* FEATURE CARDS & FLEX */
@media (max-width: 1200px) {
  .feature-grid, .card-grid, .card-container, .features, .content-grid {
    gap: 16px;
  }
  .feature-item {
    min-width: 145px;
    padding: 22px 12px;
  }
}
@media (max-width: 950px) {
  .feature-grid, .card-grid, .card-container, .features, .content-grid {
    gap: 14px;
  }
  .feature-item {
    min-width: 100px;
    padding: 15px 7px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-grid, .card-container, .features, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    margin-bottom: 0px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #082636;
  border-top: 3px solid #19647E;
  box-shadow: 0 -4px 22px rgba(25,100,126,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1400;
  padding: 22px 13px 17px 13px;
  gap: 14px;
  transition: transform 0.32s cubic-bezier(0.44, 0.09, 0.27, 1.18), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 0.95rem;
  margin-bottom: 7px;
  color: #092c39;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-light {
  font-size: 1rem;
  padding: 9px 22px;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width:100vw; height:100vh;
  background: rgba(20,34,42,0.39);
  z-index: 1600;
  opacity:1;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  width: 95vw;
  max-width: 440px;
  padding: 38px 24px 32px 24px;
  box-shadow: 0 8px 36px rgba(25,100,126,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1601;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #19647E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
}
.cookie-modal section {
  margin-bottom: 11px;
}
.cookie-modal .category {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal .toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  margin-right: 6px;
  position: relative;
  cursor: pointer;
  background: #d9f4fa;
  transition: background 0.16s;
  flex-shrink: 0;
}
.cookie-modal .toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0; left: 0;
  cursor: pointer;
}
.cookie-modal .slider {
  display: block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  background: #92DCE5;
  transition: left 0.16s, background 0.19s;
}
.cookie-modal .toggle input:checked + .slider {
  left: 18px;
  background: #19647E;
}
.cookie-modal .category.essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, 
.cookie-modal .btn-secondary, 
.cookie-modal .btn-light {
  font-size: 1rem;
  min-width: 79px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #92DCE5;
  color: #19647E;
  border: none;
  border-radius: 8px;
  font-size: 1.22rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-close:hover {
  background: #19647E;
  color: #fff;
}

/* ACCESSIBILITY/FOCUS STYLES */
a:focus, .btn-primary:focus, .btn-secondary:focus, .btn-light:focus, .cookie-modal-close:focus {
  outline: 2.5px solid #92DCE5;
  outline-offset: 1px;
}

/* VISUAL ACCENTS (GEOMETRY) */
.section, .card, .feature-item, .text-section, .testimonial-card {
  position: relative;
}
.section:before, .text-section:before, .testimonial-card:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 13px;
  left: 14px;
  border-radius: 8px;
  background: #92DCE56c;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  transform: rotate(-18deg);
  display: none;
}
@media (min-width: 1100px) {
  .section:before, .text-section:before, .testimonial-card:before {
    display: block;
  }
}

/* LISTS AND TABLES */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 2px;
  position: relative;
}
ul li:before {
  content: '';
  background: #92DCE5;
  border-radius: 10px;
  width: 10px; height: 10px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1.5px;
}
ol li {
  margin-left: 10px;
}
ol li:before {
  display: none;
}

/* SPACING & WHITE SPACE */
section, .section {
  margin-bottom: 60px;
  padding-top: 0;
}
@media (max-width:768px){
  section, .section {
    margin-bottom: 36px;
    padding: 0;
  }
}

/* Utilities */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Responsive text for smaller screens */
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .btn-primary,
  .btn-secondary,
  .btn-light {
    padding: 10px 14px;
    font-size: 0.99rem;
  }
}

/* Hide scrollbars in modals and mobile nav (not essential but cleaner look) */
.mobile-menu, .cookie-modal-overlay { scrollbar-width: none; }
.mobile-menu::-webkit-scrollbar, .cookie-modal-overlay::-webkit-scrollbar { display:none; }

/* Custom Scrollbar for body */
body::-webkit-scrollbar {
  width: 10px;
  background: #ddeff0;
}
body::-webkit-scrollbar-thumb {
  background: #92DCE5;
  border-radius: 10px;
}

/* Animations */
.btn-primary, .feature-item, .card, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.19s, background 0.15s, color 0.16s, transform 0.16s;
}
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay,
.cookie-modal {
  will-change: opacity, transform;
}

/* Hide visually (for accessibility helpers) */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  padding: 0;
  margin: -1px;
}

/* END CSS FILE */
