/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #171e26; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; height: auto; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* BRAND TYPOGRAPHY */
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F9F6EF;
  font-size: 16px;
  background: linear-gradient(120deg, #1a2430 0%, #234E70 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F9F6EF;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 16px;
  color: #D1E8E2;
  font-size: 1.125rem;
}
strong {
  font-weight: 700;
  color: #A3B18A;
}

/* GENERAL LAYOUT */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35, 78, 112, 0.12);
  border-radius: 20px;
  box-shadow: 0 6px 36px 0 rgba(35, 78, 112, 0.10);
}

/* MAIN NAVIGATION */
header {
  background: rgba(23, 30, 38, 0.97);
  padding: 0;
  z-index: 30;
  box-shadow: 0 4px 24px rgba(35,78,112,0.13);
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 0 20px;
  min-height: 64px;
}
.main-nav a {
  color: #F9F6EF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  padding: 8px 0 6px 0;
  position: relative;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  color: #A3B18A;
  border-bottom: 2px solid #00f7ff;
}
.main-nav a.cta {
  margin-left: auto;
  background: #2bb3d3;
  color: #171e26;
  padding: 10px 22px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 2px 12px 0 rgba(43,179,211, 0.08);
  letter-spacing: 0.04em;
  border: 2px solid #2bb3d3;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #00f7ff;
  color: #234E70;
  border-color: #00f7ff;
  box-shadow: 0 4px 32px 0 rgba(0,247,255,0.12);
}

.main-nav img {
  height: 37px;
  width: auto;
  margin-right: 18px;
}

/* BURGER BUTTON (MOBILE) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: #A3B18A;
  border: none;
  padding: 7px 14px;
  position: absolute;
  right: 16px;
  top: 10px;
  z-index: 52;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(163,177,138,0.13);
}

/* MOBILE NAVIGATION MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 30, 38, 0.97);
  z-index: 1101;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  color: #2bb3d3;
  background: none;
  border: none;
  margin: 14px 18px 16px 0;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(43, 179, 211, 0.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 32px 28px;
}
.mobile-nav a {
  color: #F9F6EF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(163, 177, 138, 0.18);
  transition: color 0.2s, background 0.18s;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #00f7ff;
  background: rgba(43,179,211,0.09);
}

/* Hide main nav/show on desktop, show burger on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* BUTTON STYLES */
.cta, .btn, button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #00f7ff;
  color: #171e26;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(43,179,211,0.13);
  margin-top: 18px;
  margin-bottom: 8px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, border 0.17s;
  border: 2px solid #00f7ff;
  letter-spacing: 0.02em;
}
.cta:hover, .btn:hover, .button:hover, .cta:focus {
  background: #2bb3d3;
  color: #fff;
  border-color: #2bb3d3;
  box-shadow: 0 6px 32px rgba(0,247,255,0.09);
}

/* CARD & FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: rgba(23, 30, 38, 0.96);
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 rgba(35,78,112,0.11);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
  border: 2px solid rgba(35, 78, 112, 0.08);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 #00f7ff33;
  border: 2px solid #2bb3d3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.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: 20px;
  padding: 20px 32px;
  background: #F9F6EF;
  color: #234E70;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(35,78,112,0.13);
  margin-bottom: 24px;
  border: 2px solid #2bb3d3;
  max-width: 640px;
  font-size: 1.17rem;
}
.testimonial-card strong {
  color: #234E70;
}
.testimonial-card p {
  color: #234E70;
  margin: 0 0 0.3em 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(35, 78, 112, 0.09);
  border-radius: 11px;
  padding: 18px 22px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px 0 rgba(35,78,112,0.07);
}

/* ARTICLES & TEXT BLOCKS */
.text-section {
  background: rgba(35, 78, 112, 0.065);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
  color: #d9ecfa;
  font-size: 1.08rem;
}
.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}

/* TABLE STYLES */
table {
  width: 100%;
  background: rgba(35, 78, 112, 0.11);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(35,78,112,0.10);
  overflow: hidden;
  margin-bottom: 32px;
  font-size: 1.09rem;
}
thead {
  background: #234E70;
  color: #F9F6EF;
  font-family: 'Montserrat', Arial, sans-serif;
}
th, td {
  padding: 18px 16px;
  text-align: left;
}
tr:not(:last-child) {
  border-bottom: 1px solid #2bb3d3;
}
tbody tr {
  background: rgba(23, 30, 38, 0.89);
  transition: background 0.16s;
}
tbody tr:hover {
  background: #A3B18A33;
}

/* LISTS */
ul {
  margin-bottom: 16px;
}
ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.12rem;
  color: #e7fcfe;
}
ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 3px;
  background: linear-gradient(90deg, #2bb3d3 0%, #00f7ff 100%);
  border-radius: 2px;
}

/* FOOTER */
footer {
  background: rgba(23, 30, 38, 0.98);
  border-top: 3px solid #2bb3d3;
  padding: 32px 0 0 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F9F6EF;
  font-size: 0.96rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #2bb3d3;
  border-bottom: 2px solid #2bb3d3;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.footer-info img {
  height: 32px;
  width: auto;
}
.footer-info p {
  color: #A3B18A;
  font-size: 0.9rem;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/********* COOKIE CONSENT BANNER *********/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1a2430;
  color: #F9F6EF;
  border-top: 3px solid #2bb3d3;
  box-shadow: 0 -6px 20px 0 #00f7ff11;
  z-index: 2002;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 32px 22px 32px;
  font-size: 1rem;
  animation: fadeInUp 0.4s;
}
.cookie-banner p {
  flex: 1 1 220px;
  margin: 0;
  color: #D1E8E2;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #00f7ff;
  color: #234E70;
  border-radius: 12px;
  padding: 8px 21px;
  font-size: 1.06rem;
  margin-right: 8px;
  border: 2px solid #00f7ff;
  box-shadow: 0 1px 8px 0 rgba(43,179,211,0.10);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #2bb3d3;
  color: #fff;
  border-color: #2bb3d3;
}
.cookie-btn.reject {
  background: #234E70;
  color: #D1E8E2;
  border: 2px solid #2bb3d3;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #2bb3d3;
  color: #F9F6EF;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 18px 10px 16px 10px;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .cookie-btn, .cookie-settings-btn {
    margin-right: 0;
    margin-bottom: 7px;
  }
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23,30,38,0.78);
  z-index: 4001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.36s;
}
.cookie-modal {
  background: #1a2430;
  color: #F9F6EF;
  border-radius: 22px;
  padding: 38px 34px 32px 34px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 14px 44px #00f7ff22;
  border: 3px solid #00f7ff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 4100;
  position: relative;
}
.cookie-modal h2 {
  color: #00f7ff;
  margin-bottom: 7px;
  font-size: 1.32rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.cookie-category label {
  flex: 1 1;
  font-size: 1.08rem;
  color: #A3B18A;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #234E70;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.18s;
}
.cookie-toggle .dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2bb3d3;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.16s;
  box-shadow: 0 1px 4px #00f7ff22;
}
.cookie-toggle.enabled {
  background: #2bb3d3;
}
.cookie-toggle.enabled .dot {
  left: 22px;
  background: #00f7ff;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px; top: 14px;
  font-size: 2rem;
  color: #f9f6ef;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 7px;
  transition: background 0.13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #234E70;
}

@media (max-width: 424px) {
  .cookie-modal {
    padding: 14vw 6vw 8vw 6vw;
  }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes fadeInUp { from {opacity:0; transform:translateY(60px);} to {opacity:1; transform:translateY(0);} }
.section, .card, .testimonial-card, .feature-item, .cookie-modal, .cookie-banner {
  animation: fadeIn 0.75s cubic-bezier(0.55, 1.2, 0.5, 1);
}

/* LINK & TRANSITION EFFECTS */
a {
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #00f7ff;
  outline-offset: 2px;
  border-radius: 3px;
}

/* FORMS & INPUTS - (for future forms) */
input, textarea, select {
  background: #272e3b;
  color: #F9F6EF;
  border: 1.5px solid #2bb3d3;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-size: 1.07rem;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #00f7ff;
}

/* RESPONSIVE - MOBILE FIRST  */
@media (max-width: 900px) {
  .container { padding-left: 9px; padding-right: 9px; }
  .main-nav a.cta { font-size: 1rem; padding: 10px 10px; }
  .testimonial-card { padding: 16px 11px; font-size: 1.01rem; }
  .section { padding: 34px 7px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .articles {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .section { margin-bottom: 42px; padding: 26px 4px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.265rem; }
  .card, .feature-item, .text-section {
    padding: 13px 8px;
    margin-bottom: 16px;
  }
  .footer-info { flex-direction: column; gap: 5px; }
}
@media (max-width: 540px){
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.02rem; }
  .footer-info img { height: 22px; }
}

/* ACCENT COLORS & FUTURISTIC NEON */
body {
  /* Fallback gradient */
  background: #171e26;
}
.section, .card, .feature-item, .testimonial-card, .text-section {
  box-shadow: 0 2px 24px 0 #00f7ff12;
}
.card, .feature-item, .testimonial-card {
  border: 2px solid transparent;
  position: relative;
}
.card::after, .feature-item::after {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00f7ff;
  opacity: 0.05;
  pointer-events: none;
  box-shadow: 0 0 28px 18px #00f7ff99;
  z-index: 1;
}
.card:hover::after, .feature-item:hover::after {
  opacity: 0.4;
  transform: scale(1.15);
  transition: opacity 0.21s, transform 0.21s;
}

/* NEON SHADOW FOCUS FOR BUTTONS */
.cta:focus, .btn:focus, .button:focus {
  box-shadow: 0 0 0 3px #00f7ff77 !important;
  outline: none;
}

/* ADA/CONTRAST: Fix testimonials for readability on light bkg */
.testimonial-card {
  background: #F9F6EF;
  color: #234E70;
}
.testimonial-card strong {
  color: #234E70;
}

/* Tables - Zebra striping for contrast */
tbody tr:nth-child(even) {
  background: rgba(35,78,112,0.16);
}

/* MISC */
::-webkit-scrollbar {
  width: 7px;
  background: #1a2430;
}
::-webkit-scrollbar-thumb {
  background: #2bb3d3;
  border-radius: 7px;
}


/* Hide visually */
[hidden] {
  display: none !important;
}

/* Helper gap at page bottom for cookie banner */
body { padding-bottom: 98px; }

/* NEVER use grid or multi-column! */
/* End of CSS */
