/* 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;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
img, video { max-width: 100%; height: auto; border: none; display: block; }
ul, ol { padding-left: 24px; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  background: #161e26;
  color: #f5f5f5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(135deg, #202840 0%, #1c2343 100%);
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
p, ul, ol, li, details, summary, label, a, strong, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e1e7f2;
}
strong { font-weight: 700; }

/* Layout */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1200px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Flexbox content layouts */
.features-grid,
.features,
.card-container, .card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  background: #202842;
  border-radius: 18px;
  box-shadow: 0 0 36px 0 rgba(54, 198, 255, 0.07), 0 2px 12px 0 rgba(30, 40, 54, 0.12);
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.2s;
  border: 1.5px solid #293872;
  position: relative;
}
.feature img {
  margin-bottom: 8px;
  height: 48px;
}
.feature:hover {
  box-shadow: 0 0 0 3px #A27626, 0 0 24px 0 rgba(211, 169, 92, 0.20);
  transform: translateY(-4px) scale(1.017);
  border-color: #D3A95C;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #212b45;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(36,85,116,0.07);
  position: relative;
  padding: 28px 20px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 0 0 4px #73defc,0 8px 36px 0 rgba(36,85,116,0.23);
  transform: scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FAFAFA;
  color: #2A3644;
  border-radius: 18px;
  margin: 20px 0 24px 0;
  box-shadow: 0 2px 12px rgba(36,85,116,0.11);
  padding: 20px;
  min-width: 0;
  max-width: 680px;
}
.testimonial-card p, .testimonial-card strong {
  color: #1b2331;
}
.testimonial-card span {
  color: #A27626;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
}

/* Spacing rules for sections and cards */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
}
.card-container, .features-grid { gap: 24px; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Navigation Styles */
header {
  background: #1c2539;
  box-shadow: 0 2px 10px rgba(20,39,60,0.13);
  padding-top: 0;
  padding-bottom: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 72px;
}
nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 32px;
}
nav > a img {
  height: 48px;
  margin-right: 32px;
  vertical-align: middle;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #ecf6ff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
nav ul li a:hover, nav ul li a:focus {
  color: #fff;
  background: #245574;
  box-shadow: 0 2px 20px 0 #24557433;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #245574 60%, #A27626 140%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  margin-left: 30px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 16px 0 rgba(36, 85, 116, 0.11);
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(95deg, #273d62 50%, #D3A95C 140%);
  color: #222E3B;
  box-shadow: 0 0 0 3px #A27626;
  transform: translateY(-1px) scale(1.04);
}

/* Mobile Nav Burger Styles */
.mobile-menu-toggle {
  display: none;
  background: #245574;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.15s, box-shadow .2s;
  z-index: 51;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A27626;
  color: #fff;
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26,32,54,0.98);
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.7,0,.3,1);
  z-index: 1002;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  padding-top: 20px;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.37s cubic-bezier(.7,0,.3,1);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 10px 22px;
  position: absolute;
  right: 0;
  top: 8px;
  cursor: pointer;
  z-index: 1004;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-top: 66px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A27626;
  color: #fff;
}

/* Footer */
footer {
  margin-top: 60px;
  background: #181e29;
  box-shadow: 0 -1px 16px rgba(20,39,60,0.07);
  color: #e9eefd;
  font-size: 1rem;
  padding: 40px 0 32px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #A7B5CB;
  font-size: .96rem;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus { background: #245574; color: #fff; }
footer .text-section {
  color: #b8c9e2;
  margin-bottom: 0;
}
footer p, footer a, footer small { color: #A7B5CB; }
footer a:hover { color: #fff; }

/* Details / FAQ */
details {
  margin-bottom: 20px;
  background: #212b45;
  border-radius: 12px;
  padding: 14px 18px 10px 18px;
  box-shadow: 0 1px 6px rgba(36,85,116,0.06);
  cursor: pointer;
  transition: box-shadow .2s;
}
details[open] {
  box-shadow: 0 0 0 2px #A27626,0 4px 24px #73defc17;
}
details summary {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A27626;
  cursor: pointer;
  outline: none;
  font-size: 1.05rem;
}
details p { margin-top: 10px; }

.map-snippet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #262e43;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 10px;
}
.map-snippet img {
  width: 64px;
}
.map-snippet small {
  color: #A27626;
  font-size: .95rem;
}

/* General Buttons */
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  padding: 11px 22px;
  background: #245574;
  color: #fff;
  font-weight: 700;
  transition: background .17s, box-shadow .22s, color .18s;
}
button:hover, button:focus {
  background: #A27626;
  color: #fff;
  box-shadow: 0 0 0 2px #D3A95C;
  outline: none;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222A3A;
  color: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -3px 36px 0 rgba(36,85,116,0.30);
  padding: 22px 18px 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 24px;
  font-size: 1rem;
  animation: cookieBannerIn .39s ease .1s backwards;
}
@keyframes cookieBannerIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  background: #245574;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  font-weight: 700;
  text-transform: none;
  margin-right: 0;
  transition: background 0.17s, box-shadow 0.17s, color 0.16s;
}
.cookie-banner .cookie-btn.accept {
  background: #A27626;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #444e65;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #245574;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #D3A95C;
  color: #2A3644;
  box-shadow: 0 0 0 3px #A27626;
  outline: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(22,26,52,0.80);
  top: 0; left:0; width: 100vw; height: 100vh;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .24s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #191f2c;
  color: #fff;
  border-radius: 18px;
  padding: 32px 24px 28px 24px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 0 52px 0 rgba(36,85,116,0.33);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn .32s cubic-bezier(.11,1.05,.47,1.01);
}
@keyframes modalPopIn {
  from { transform: scale(0.8) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #D3A95C;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-cat label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}
.cookie-modal .cookie-cat input[type="checkbox"] {
  accent-color: #A27626;
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 1.52rem;
  background: none;
  color: #bbb;
  border: none;
  padding: 5px 8px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #222F3C;
  color: #fff;
  outline: none;
}


/* Lists, paragraphs */
ul, ol {
  color: #cad6ef;
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
a {
  color: #D3A95C;
  text-decoration: underline dotted;
  transition: color 0.16s;
}
a:hover, a:focus {
  color: #A27626;
  outline: none;
}
/* Forms */
input, textarea, select {
  padding: 10px;
  border: 1.5px solid #2d3e50;
  border-radius: 9px;
  background: #212b45;
  color: #fff;
  font-size: 1rem;
  box-shadow: none;
  transition: border 0.15s, box-shadow 0.17s;
  outline: none;
  width: 100%;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #A27626;
  box-shadow: 0 0 0 1.5px #D3A95C;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #A27626;
  margin-bottom: 6px;
  display: block;
}

/* Animations / Neon Effect Utilities */
.neon-glow {
  text-shadow: 0 0 6px #245574, 0 0 20px #73defc, 0 0 30px #A27626;
  color: #fff;
}

/* Reusable Shadows & Borders */
.shadow-md {
  box-shadow: 0 3px 20px rgba(36,85,116,0.13);
}
.rounded-lg {
  border-radius: 18px;
}

/* Responsive - Mobile First */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  .features-grid {
    flex-wrap: wrap;
  }
  .feature, .card {
    flex: 1 1 290px;
    min-width: 210px;
  }
  nav ul { gap: 12px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper { gap: 16px; }
  nav ul { display: none; }
  nav > .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav { gap: 10px; }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .card { margin-bottom: 18px; }
  .testimonial-card {
    flex-direction: column;
    padding: 16px;
    gap: 10px;
  }
  .section, section {
    padding: 28px 7px;
    margin-bottom: 32px;
  }
  .card { padding: 18px 10px; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .feature, .card {
    min-width: 100px;
    padding-left: 9px; padding-right: 9px;
  }
  .footer-nav a { font-size: .93rem; padding: 5px 7px; }
  .cta-btn { font-size: .97rem; padding: 10px 16px; margin-left: 11px; }
}

/* Hide Scroll on Mobile Menu Open */
.mobile-menu.active ~ body {
  overflow: hidden;
}

/* Utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Z-index for overlays and nav */
header, nav, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { z-index: 200; }
.mobile-menu { z-index: 1002; }

/* Misc additional styles */
::-webkit-scrollbar {
  background: #202840;
  width: 11px;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #245574;
  border-radius: 20px;
}

/**** SPACING ASSURANCE: all cards/sections/components have at least 18-24px between them due to flex gap. ****/
