/* === CSS RESET === */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}

body {
  background: linear-gradient(135deg, #1a242e 0%, #233755 80%, #19426A 100%);
  color: #F4F9FC;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F4F9FC;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
h4 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
p, li, blockquote, ul, ol { font-size: 1rem; color: #d7e7fa; margin-bottom: 10px; }
strong { color: #87A8C7; font-weight: 700; }
small { font-size: 0.9rem; color: #87A8C7; }
blockquote {
  font-style: italic;
  border-left: 3px solid #87A8C7;
  margin: 0 0 10px 0;
  padding: 0 0 0 14px;
  color: #08192a;
  background: #fafeff;
  border-radius: 8px;
  font-size: 1.07rem;
}

/* === CONTAINER & LAYOUTS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: #132239;
  border: 1.5px solid #223b5b;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(7,28,49,.14);
  position: relative;
  transition: box-shadow 0.24s, border 0.18s;
}
.card:hover {
  box-shadow: 0 0 16px #87A8C7, 0 8px 32px rgba(8,32,64,.18);
  border-color: #87A8C7;
}

.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-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 20px;
  margin-bottom: 20px;
  background: #F4F9FC;
  color: #19426A;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,100,180,0.10);
  border-left: 4px solid #87A8C7;
  max-width: 520px;
}
.testimonial-card blockquote, .testimonial-card p {
  color: #222a34;
  margin-bottom: 0px;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > * {
  background: #223b5b;
  color: #F4F9FC;
  padding: 28px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(25,66,106,.08);
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, filter 0.18s;
}
.feature-grid > *:hover {
  box-shadow: 0 0 18px #87A8C7, 0 8px 28px rgba(30,80,160,0.12);
  filter: brightness(1.05) saturate(1.1);
}

/* Blog list */
.blog-list li {
  margin-bottom: 24px;
  background: #183257;
  border: 1px solid #24416c;
  border-radius: 15px;
  padding: 22px 20px;
  transition: border 0.18s, box-shadow 0.20s;
}
.blog-list li:hover {
  border: 1.5px solid #87A8C7;
  box-shadow: 0 0 14px #3585e4;
}
.blog-list h3 a {
  color: #87A8C7;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.category-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.category-filters button {
  background: #19426A;
  color: #F4F9FC;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 0.97rem;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.16s, box-shadow 0.18s;
  box-shadow: 0 1px 4px #122c4d05;
}
.category-filters button:hover {
  background: #3585e4;
}

/* === HERO BANNER === */
.hero {
  background: linear-gradient(100deg, #19426A 60%, #293b64 100%);
  border-bottom: 3px solid #87A8C7;
  padding: 60px 0 44px 0;
  margin-bottom: 36px;
}
.hero h1 {
  color: #F4F9FC;
  text-shadow: 0 3px 24px #1a6ebc33, 0 2px 2px #122c3e11;
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.hero p {
  font-size: 1.09rem;
  color: #EAF8FF;
  margin-bottom: 22px;
}
.hero .cta-btn {
  margin-top: 8px;
}

/* === CTA BUTTONS === */
.cta-btn {
  background-color: #87A8C7;
  color: #19426A;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  letter-spacing: 0.02em;
  margin: 12px 0 0 0;
  box-shadow: 0 3px 24px #3585e41a;
  transition: background 0.16s, color .18s, box-shadow 0.20s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover {
  background-color: #F4F9FC;
  color: #233755;
  box-shadow: 0 0 10px #87A8C7, 0 4px 18px #223b5b33;
}
.cta-btn:active {
  background-color: #d1e1fa;
  color: #19426A;
}

/* === HEADER NAVIGATION === */
header {
  background: #08192a;
  box-shadow: 0 2px 20px #19376909;
  border-bottom: 3px solid #19426A;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
}
.main-nav a {
  color: #F4F9FC;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background 0.13s, color 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #19426A;
  color: #87A8C7;
}

header img[src*="logo"] {
  height: 40px;
  width: auto;
  margin-right: 6px;
}

header .cta-btn {
  margin-left: 24px;
}

/* === BURGER MENU (MOBILE) === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #87A8C7;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s;
  margin-left: 18px;
}
.mobile-menu-toggle:hover {
  color: #F4F9FC;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #08192aec;
  transform: translateX(100vw);
  transition: transform 0.40s cubic-bezier(.5,.01,.4,1), opacity 0.18s;
  opacity: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F4F9FC;
  font-size: 2.1rem;
  margin: 28px 28px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 2100;
}
.mobile-menu-close:hover {
  color: #87A8C7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 40px 0 0 42px;
}
.mobile-nav a {
  color: #F4F9FC;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.17rem;
  padding: 12px 12px;
  border-radius: 10px;
  transition: background 0.13s, color 0.14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #19426A;
  color: #87A8C7;
}

@media (max-width: 1024px) {
  header .container {
    max-width: 100vw;
    padding-right: 7vw;
    padding-left: 7vw;
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .main-nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    gap: 24px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 14px 10px 14px 10px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .testimonial-card {
    width: 100%;
    padding: 18px 9px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .hero {
    padding: 36px 0 26px 0;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* === LISTS === */
ul, ol {
  margin-left: 18px;
  margin-bottom: 14px;
  color: #D7E7FA;
}
li {
  margin-bottom: 10px;
  padding-left: 0px;
}
ul > li::before {
  content: '\2022';
  color: #87A8C7;
  font-weight: bold;
  display: inline-block; width: 1.5em;
  margin-left: -1.5em;
}
ol > li {
  list-style: decimal inside;
}

/* === ACCORDION (FAQ) === */
.faq-accordion > div {
  background: #223b5b;
  padding: 18px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 1px 7px #16326318;
  cursor: pointer;
  transition: box-shadow 0.16s;
}
.faq-accordion > div:hover {
  box-shadow: 0 0 15px #87A8C7, 0 2px 8px #3585e410;
}
.faq-accordion h3 {
  margin-bottom: 4px;
  color: #F4F9FC;
  font-size: 1.07rem;
  font-weight: 600;
}
.faq-accordion p {
  color: #87A8C7;
  margin-bottom: 0px;
  font-size: 1rem;
}

/* === CONTACT PAGE STYLES === */
.contact-brief, .contact-success-message, .quick-contact-brief, .map-embed {
  background: #1a304f;
  color: #F4F9FC;
  border-radius: 14px;
  box-shadow: 0 1px 7px #87a8c705;
  padding: 20px;
  margin-bottom: 20px;
}
.contact-success-message {
  background: #d0eaf7;
  color: #16416a;
  font-size: 1.07rem;
  border-left: 4px solid #87A8C7;
}

/* === FOOTER ===*/
footer {
  background: #08192a;
  color: #F4F9FC;
  padding: 36px 0 14px 0;
  border-top: 3px solid #87A8C7;
  margin-top: 36px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #87A8C7;
  opacity: .85;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.97rem;
  transition: background 0.13s, color 0.14s, opacity 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #223b5b;
  color: #F4F9FC;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d7e7fa;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  opacity: 0.78;
  transition: opacity 0.16s, filter 0.16s;
}
.footer-social a:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 5px #87A8C7);
}
footer .container > div:last-child {
  margin-top: 10px;
  font-size: 0.98rem;
  opacity: .7;
}
@media (max-width: 768px) {
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-social {
    gap: 10px;
  }
}

/* === COOKIE BANNER ===*/
.cookie-banner {
  display: flex;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #233755;
  color: #F4F9FC;
  padding: 22px 18px;
  box-shadow: 0 -2px 28px #15314888;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: transform 0.40s, opacity 0.26s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-message {
  flex: 2 1 260px;
  font-size: 1.08rem;
  color: #d7e7fa;
}
.cookie-banner-actions {
  flex: 1 1 auto;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-btn, .cookie-settings-btn {
  background: #087afc;
  color: #f4f9fc;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 1px 4px #87A8C705;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #F4F9FC;
  color: #08192a;
}
.cookie-btn.reject {
  background: #da3757;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #F4F9FC;
  color: #bc2946;
}
.cookie-settings-btn {
  background: #19426A;
  color: #F4F9FC;
  border: 1px solid #87A8C7;
}
.cookie-settings-btn:hover {
  background: #F4F9FC;
  color: #19426A;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10011;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1a2944bb;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.visible {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #F4F9FC;
  color: #19426A;
  padding: 36px 22px 24px 22px;
  border-radius: 14px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 4px 36px #08163133;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 10012;
}
.cookie-modal h2 {
  color: #19426A;
  font-size: 1.23rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.cookie-modal p, .contact-success-message p {
  color: #08192a;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #19426A;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover {
  color: #087afc;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eceff7;
  padding: 10px 13px;
  border-radius: 7px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #19426A;
  font-weight: 600;
}
/* Custom Toggle Switch */
.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #bac9db;
  transition: 0.3s;
  border-radius: 17px;
}
.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #f4f9fc;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 3px 9px #aec9ff22;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background-color: #87A8C7;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider:before {
  transform: translateX(22px);
  background: #19426A;
}
.cookie-modal .cookie-category.essential .cookie-toggle-switch {
  pointer-events: none;
  opacity: .5;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 82px;
}

/* === ANIMATIONS === */
.cta-btn, .main-nav a, .mobile-nav a, .category-filters button, .feature-grid > *, .faq-accordion > div, .testimonial-card, .blog-list li {
  transition: box-shadow .20s, background .18s, color .14s, border .14s, filter 0.18s, opacity 0.18s;
}

/* === MISC: Headlines, Forms, Cards, Icons === */
.content-wrapper > ul, .content-wrapper > ol, .content-wrapper > div > ul, .content-wrapper > div > ol {
  margin-bottom: 15px;
  color: #F4F9FC;
}
.content-wrapper > ul li, .content-wrapper > ol li {
  color: #D7E7FA;
}
.content-wrapper > ul li a, .content-wrapper > ol li a {
  color: #87A8C7;
  text-decoration: underline;
  transition: color 0.18s;
}
.content-wrapper > ul li a:hover {
  color: #F4F9FC;
}
.content-wrapper strong {
  color: #87A8C7;
  font-weight: bold;
}

.content-wrapper img, .feature-grid img, .footer-contact img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 0 7px #26a5f7bb) contrast(1.2);
}

.map-embed img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 9px #3585e4cc) brightness(1.09);
}

/* Success, error, notices */
.notice, .success, .error {
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  background: #1a394b;
  color: #fff;
  border-left: 4px solid #87A8C7;
  font-size: 1.04rem;
}
.success {
  background: #bce8f1;
  color: #213855;
  border-left: 4px solid #33c095;
}
.error {
  background: #ffd6d8;
  color: #c91834;
  border-left: 4px solid #da3757;
}

/* === THANK-YOU PAGE === */
.thank-you { text-align: center; margin: 0 auto; max-width: 640px; }
.thank-you h1 { margin-bottom: 10px; }
.thank-you ul { list-style: disc inside; color: #87A8C7; margin-bottom: 1em; }

/* === CUSTOM SCROLLBAR (Futuristic accent) === */
::-webkit-scrollbar {
  width: 11px;
  background: #132239;
}
::-webkit-scrollbar-thumb {
  background: #87A8C7;
  border-radius: 9px;
  border: 3px solid #132239;
}
::-webkit-scrollbar-thumb:hover {
  background: #3585e4;
}

/* === SCALING FONTS RESPONSIVELY (NO clamp) === */
@media (max-width: 500px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 1.22rem; }
  h1 { font-size: 1.40rem; }
  h2 { font-size: 1.08rem; }
}

/* === MODERN, FUTURISTIC EFFECTS === */
.feature-grid > * {
  box-shadow: 0 0 16px #3585e408, 0 1.5px 8px #3585e408;
  border-left: 3px solid #87A8C7;
  background: linear-gradient(108deg, #233755 70%, #19426A 100%);
}
.card {
  background: #223b5b;
  color: #F4F9FC;
  border: 1.5px solid #19426A;
  border-left: 3px solid #87A8C7;
  border-radius: 15px;
  box-shadow: 0 0 21px #212b3b19, 0 6px 24px #19426A08;
}

/* Neon effect lines (decorative, only if used by absolute, eg for content highlight) */
.neon-line {
  position: absolute;
  left: 0; top: -2px;
  height: 4px;
  width: 90%;
  background: #87A8C7;
  box-shadow: 0 0 8px #87A8C7, 0 0 24px #87A8C7;
  border-radius: 4px;
  opacity: .33;
}

/* === END OF CSS === */
