/* RESET & BASE STYLES */
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,
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #16283c;
  color: #F6E9D8;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #31A096;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #76ffe9;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  box-sizing: border-box;
}
strong, b {
  font-weight: 700;
}
section {
  width: 100%;
  background: #172f47;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BRAND COLORS (CSS Variables for fallback) */
:root {
  --color-primary: #1F4965;
  --color-secondary: #31A096;
  --color-accent: #F6E9D8;
  --color-bg-dark: #16283c;
  --color-bg-section: #172f47;
  --color-neon: #76ffe9;
  --color-neon-pink: #fd68a0;
  --shadow-main: 0 4px 24px 0 rgba(25, 255, 232, 0.07);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(49,160,150,0.10);
}
h2 {
  font-size: 1.5rem;
  color: var(--color-neon);
  line-height: 1.24;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(49,160,150,0.10);
}
h3 {
  font-size: 1.17rem;
  color: #fff;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.125rem;
  color: #F6E9D8;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.small {
  font-size: 0.947rem;
  opacity: .85;
}
p {
  margin-bottom: 20px;
  font-size: 1rem;
}
ul, ol {
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #F6E9D8;
  position: relative;
  padding-left: 20px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-neon);
  border-radius: 50%;
  margin-right: 10px;
  position: absolute; left: 0; top: 9px;
}
.text-section ul li:before {
  background: var(--color-secondary);
}
ol li:before { display: none; }

/* LAYOUT: FLEXBOX CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: rgba(31, 73, 101, 0.98);
  border-radius: 18px;
  box-shadow: var(--shadow-main);
  padding: 32px 24px;
  gap: 20px;
}
.text-section {
  background: rgba(49, 160, 150, 0.07);
}

/* GRID-LIKE FLEX ARRANGEMENTS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #192846;
  border-radius: 16px;
  padding: 28px 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 36px 0 rgba(49,160,150,0.04);
  transition: box-shadow 0.25s, transform 0.18s;
  display: flex; flex-direction: column;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(118, 255, 233, 0.12);
  transform: translateY(-3px) scale(1.017);
}

/* SECTION LAYOUT SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #172f47;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 20px 0 16px 0;
}
.feature-list > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-neon);
  background: rgba(49, 160, 150, 0.07);
  border-radius: 12px;
  padding: 8px 20px 8px 8px;
  font-weight: 500;
}
.feature-list img {
  width: 28px;
  height: 28px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.service-grid > div {
  background: #1F4965;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(49,160,150,0.06);
  flex: 1 1 240px;
  min-width: 260px;
  padding: 24px 16px;
  margin-bottom: 15px;
  color: #F6E9D8;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  border: 1.5px solid rgba(49,160,150,0.14);
}
.service-grid > div:hover {
  border-color: var(--color-neon);
  box-shadow: 0 0px 32px 0 rgba(118,255,233,0.08);
  transition: box-shadow 0.21s, border 0.14s;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-list > div {
  background: #19334a;
  border-radius: 13px;
  padding: 20px 16px;
  color: #F6E9D8;
  box-shadow: 0 4px 10px rgba(31,73,101,0.10);
  flex: 1 1 260px;
  min-width: 260px;
  transition: box-shadow 0.24s;
}
.faq-list > div:hover {
  box-shadow: 0 1px 30px 0 rgba(134,255,230,0.13);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6E9D8;
  color: #1F4965;
  border-radius: 16px;
  box-shadow: 0 3px 33px 0 rgba(49,160,150,0.10);
  margin-bottom: 28px;
  padding: 20px 28px;
  min-width: 250px;
  font-size: 1.03rem;
  border-left: 4px solid var(--color-neon);
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--color-secondary);
}

/* BUTTONS */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 1px 9px rgba(49,160,150,0.16);
  cursor: pointer;
  transition: background 0.24s, color 0.16s, transform 0.13s, box-shadow 0.21s;
  margin: 8px 8px 8px 0;
  text-align: center;
}
.button-primary {
  background: linear-gradient(90deg, #1F4965 70%, #31A096 100%);
  color: #fff;
  border: 2px solid var(--color-neon);
  box-shadow: 0 0px 16px 0 rgba(118,255,233,0.10);
}
.button-primary:hover, .button-primary:focus {
  background: #222e79;
  color: #76ffe9;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 3px 20px 0 #76ffe966;
}
.button-secondary {
  background: #F6E9D8;
  color: #1F4965;
  border: 2px solid var(--color-neon);
}
.button-secondary:hover, .button-secondary:focus {
  background: #31A096;
  color: #fff;
}

/* NAVBAR */
header {
  background: #1F4965;
  padding: 0 0 8px 0;
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 7px 12px;
  border-radius: 22px;
  transition: background 0.18s, color 0.14s, box-shadow 0.18s;
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 1px 10px 0 var(--color-secondary);
}
.main-nav img {
  height: 32px;
  margin-right: 8px;
}

/* --- MOBILE NAVIGATION STYLES --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 52;
  font-size: 2rem;
  background: none;
  color: var(--color-neon);
  border-radius: 8px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 2px solid rgba(118,255,233,0.18);
  box-shadow: 0 2px 12px rgba(49,160,150,0.12);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #16283ce0;
  z-index: 150;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.87,0,0.13,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon);
  font-size: 2.2rem;
  margin: 16px 12px 24px 20px;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid rgba(118,255,233,0.19);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
  width: 90%;
  align-items: flex-start;
}
.mobile-nav a {
  background: none;
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 16px;
  padding: 13px 20px;
  margin-bottom: 10px;
  transition: background 0.18s, color 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-neon);
  color: #1F4965;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
    padding: 12px 8px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.98rem;
    padding: 7px 8px;
  }
}
@media (max-width: 900px) {
  .service-grid > div {
    flex-basis: 47%;
  }
}
@media (max-width: 830px) {
  .container { max-width: 99vw; }
  .main-nav {
    gap: 12px;
    padding: 9px 3px;
  }
}
@media (max-width: 768px) {
  /* Hide navbar, show burger on mobile */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
  }
  .container { padding: 0 4px; }
  .content-wrapper { padding: 18px 7px; }
  section { padding: 26px 5px; }
  .service-grid, .faq-list, .feature-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { padding: 16px 9px; font-size: 1rem; }
  .service-grid > div, .faq-list > div, .card {
    min-width: unset;
    width: 97%;
  }
}
@media (max-width: 460px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  .button-primary, .button-secondary {
    font-size: 0.97rem;
    padding: 10px 16px;
  }
  .testimonial-card { font-size: 0.97rem; }
}

/* CARD & FEATURE ITEM PATTERNS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FOOTER STYLES */
footer {
  width: 100%;
  background: #1F4965;
  color: #F6E9D8;
  margin-top: 48px;
  box-shadow: 0 -2px 19px 0 rgba(49,160,150,0.08);
}
footer .container {
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
footer nav {
  margin-bottom: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.94rem;
}
footer nav a {
  color: var(--color-neon);
  margin: 2px 3px;
}
footer nav a:hover {
  color: #F6E9D8;
}
footer p {
  font-size: 0.93rem;
  margin-bottom: 4px;
}
footer .logo-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
footer .logo-tagline img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

/* DISCLAIMERS & SPECIAL SECTIONS */
.disclaimer {
  background: #ffedb8;
  color: #316686 !important;
  border-top: 2.5px solid #fd68a0;
  border-bottom: 1px solid #31A096;
  box-shadow: 0 4px 32px 0 #fad29a59;
}
.disclaimer h2, .disclaimer p { color: #316686; }

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 970;
  background: #16283c;
  color: #F6E9D8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 15px 27px 15px;
  box-shadow: 0 -3px 32px 0 rgba(49,160,150,0.08);
  border-top: 3px solid #31A096;
  font-size: 1.03rem;
  transition: transform 0.28s cubic-bezier(0.54,0.15,0.52,1.04);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%); pointer-events: none; opacity: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #fff;
  margin-right: 12px;
  box-shadow: 0 2px 10px rgba(49,160,150,.09);
  transition: background 0.19s, color 0.14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-neon);
  color: #1F4965;
}
.cookie-banner .button-secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-neon);
}
.cookie-banner .button-secondary:hover {
  background: var(--color-neon);
  color: #1F4965;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 998;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,40,60,0.81);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #19334a;
  color: #fff;
  border-radius: 24px;
  width: 95%;
  max-width: 430px;
  box-shadow: 0 12px 48px 0 rgba(49,160,150,0.15);
  padding: 40px 32px 30px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: var(--color-neon);
  font-size: 1.22rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal .essential {
  color: #fd68a0;
  font-weight: 700;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 22px;
  background: none;
  border-radius: 8px;
  border: 2px solid rgba(118,255,233,0.19);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-neon);
  font-size: 1.65rem;
  cursor: pointer;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 23px 8px 18px 8px;
    min-width: 0;
    font-size: 0.97rem;
  }
  .cookie-modal h2 { font-size: 1.03rem; }
}

/* ACCESSIBILITY FOCUS STYLES */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-neon-pink);
  outline-offset: 3px;
}

/* ANIMATIONS & TRANSITIONS */
.button-primary, .button-secondary, .testimonial-card, .card, .service-grid > div, .feature-list > div, .faq-list > div, .mobile-nav a, .main-nav a, .cookie-banner button, .cookie-modal-close {
  transition: box-shadow 0.18s, color 0.17s, background 0.19s, border 0.17s, transform 0.15s;
}

/* NEON ACCENTS (DECORATIVE) */
.card:after {
  content: '';
  display: block;
  position: absolute;
  left: 12px; top: 12px;
  width: 16px; height: 16px;
  background: var(--color-neon);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.card:hover:after {
  opacity: 0.32;
  filter: drop-shadow(0 0 16px var(--color-neon));
}
.service-grid > div:after {
  content: '';
  position: absolute;
  right: 10px; bottom: 10px;
  width: 15px; height: 15px;
  background: var(--color-neon);
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
}

/* CUSTOM SCROLLBAR (for desktop) */
::-webkit-scrollbar {
  width: 8px;
  background: #16283c;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 7px;
}

/* HIDE ELEMENTS THAT MIGHT BE JS-TOGGLED */
[hidden] {
  display: none !important;
}

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