/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #003366;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00224d;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}
:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #003366;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
.subheadline {
  font-size: 1.25rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 28px;
}

p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #222;
}
strong {
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 0 0 0 0;
  width: 100%;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 18px;
}
header img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 4px 0 2px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}
.btn-primary {
  background: #003366;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 30px;
  font-size: 1.125rem;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0,32,80,0.05);
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  font-weight: 700;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FFD700;
  color: #003366;
  box-shadow: 0 4px 24px rgba(0,32,80,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* HAMBURGER MENU - MOBILE */
.mobile-menu-toggle {
  display: none;
  background: #003366;
  color: #fff;
  font-size: 1.85rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 101;
  position: relative;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFD700;
  color: #003366;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 48px rgba(0,32,80,0.12);
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.77,0,.175,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #003366;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 201;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #003366;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 0;
  transition: color 0.18s;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFD700;
}
@media (max-width: 1020px) {
  header .main-nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTIONS & LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 14px 0 rgba(0,0,32,0.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
section:last-child {
  margin-bottom: 0;
}

.hero {
  background: #F5F5F5;
  box-shadow: none;
  border-radius: 0 0 24px 24px;
  padding-bottom: 60px;
  margin-bottom: 48px;
}
.hero h1 {
  color: #003366;
}

.features {
  background: #fff;
}

.features ul,
.features .usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features ul li,
.features .usp-grid > div {
  flex: 1 1 240px;
  min-width: 240px;
  background: #f9f9f9;
  border-radius: 14px;
  padding: 24px 18px;
  margin: 0;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features ul li img,
.features .usp-grid > div img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

/* Recurrent spacing/flex utilities */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,32,80,0.04);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px 26px;
  background: #fafafc;
  box-shadow: 0 2px 12px rgba(0,32,80,0.06);
  border-radius: 12px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 520px;
}
.testimonial-card p,
.testimonial-card strong {
  color: #21222a;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 500;
}
.testimonial-name {
  color: #003366;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-list > div {
  flex: 1 1 240px;
  min-width: 240px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 0;
  box-shadow: 0 4px 16px 0 rgba(0,32,80,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.price {
  display: inline-block;
  color: #003366;
  background: #FFD700;
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
  align-self: flex-start;
}
.testimonials {
  background: #F5F5F5;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 20px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 170px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,32,80,.035);
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin: 0;
}
.contact-details a {
  color: #003366;
  transition: color 0.19s;
  word-break: break-all;
}
.contact-details a:hover {
  color: #FFD700;
}

/* FOOTER */
footer {
  background: #003366;
  color: #fff;
  padding: 48px 0 18px 0;
  width: 100%;
  margin-top: 40px;
  border-radius: 20px 20px 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
footer img {
  height: 34px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-right: auto;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
  opacity: 0.93;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFD700;
  opacity: 1;
}
.legal-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.legal-links a {
  color: #FFD700;
  font-size: 0.98rem;
  opacity: 0.94;
  font-weight: 400;
}
.legal-links a:hover {
  color: #fff;
  opacity: 1;
}
.social-media-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-media-icons img {
  width: 26px;
  height: 26px;
  filter: grayscale(100%) brightness(105%);
  opacity: 0.85;
  transition: filter 0.15s, opacity 0.14s;
  cursor: pointer;
}
.social-media-icons img:hover {
  filter: none;
  opacity: 1;
}

/* LEGAL PAGES */
.legal {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(0,0,32,0.03);
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.legal h1, .legal h2 {
  color: #003366;
}

/* CONFIRMATION PAGE */
.confirmation {
  background: #F5F5F5;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.04);
}
.confirmation ul {
  margin: 0 auto 2rem auto;
  text-align: left;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .footer-nav,
  .legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  section {
    padding: 30px 0.5rem;
    margin-bottom: 40px;
  }
  .hero {
    padding-bottom: 28px;
    margin-bottom: 36px;
    border-radius: 0 0 14px 14px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .service-list,
  .features ul,
  .features .usp-grid,
  .testimonial-list,
  .card-container,
  .content-grid,
  .contact-details {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    padding: 16px 10px;
  }
  .service-list > div,
  .features ul li,
  .features .usp-grid > div {
    min-width: 0;
    width: 100%;
  }
  header .container {
    padding: 16px 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.09rem; }
  .subheadline { font-size: 1.05rem; }
  .btn-primary { padding: 10px 20px; font-size: 1rem; }
  .contact-details > div { font-size: 0.95rem; }
}

/* MICRO-INTERACTIONS & HOVER TRANSITIONS */
button, .btn-primary, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.14s, color 0.18s, box-shadow 0.23s, transform 0.13s;
}
.card, .testimonial-card, .service-list > div, .features ul li, .features .usp-grid > div {
  transition: box-shadow 0.22s, transform 0.08s;
}
.card:hover, .testimonial-card:hover, .service-list > div:hover, .features ul li:hover, .features .usp-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(0,32,80,0.11);
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #003366;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 14px 20px 14px;
  box-shadow: 0 -2px 22px rgba(0,32,80,.14);
  z-index: 9999;
  gap: 22px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.26s, transform 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 auto;
  margin-right: 16px;
  max-width: 640px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  padding: 9px 22px;
  font-size: 1rem;
  margin: 0;
  background: #FFD700;
  color: #003366;
  transition: background .17s, color .15s, box-shadow .15s;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #fff;
  color: #003366;
  box-shadow: 0 1px 8px 0 rgba(0,32,80,0.09);
}
.cookie-btn.reject {
  background: #fff;
  color: #003366;
  border: 1px solid #FFD700;
}
.cookie-btn.reject:focus,
.cookie-btn.reject:hover {
  background: #FFD700;
  color: #003366;
}
.cookie-btn.settings {
  background: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
}
.cookie-btn.settings:focus,
.cookie-btn.settings:hover {
  background: #FFD700;
  color: #003366;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 14px 6px 13px 6px;
  }
  .cookie-banner-content {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .cookie-banner-actions {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }
}

/* COOKIE CONSENT POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.04);
  background: #fff;
  color: #003366;
  box-shadow: 0 12px 44px rgba(0,32,80,.19);
  border-radius: 15px;
  z-index: 10001;
  min-width: 320px;
  max-width: 95vw;
  padding: 32px 32px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity .22s, transform .22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -30%) scale(0.96);
}
.cookie-modal h2 {
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #003366;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  background: #f1f1f1;
  border-radius: 16px;
  position: relative;
  margin-left: 10px;
  margin-right: 6px;
  transition: background 0.14s;
  flex-shrink: 0;
  border: 1.2px solid #ececec;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle span {
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #FFD700;
  transition: left 0.19s, background 0.14s;
  box-shadow: 0 1px 5px 0 rgba(0,32,80,0.06);
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: #003366;
}
.cookie-category .cookie-toggle[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  padding: 9px 20px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 20px;
  color: #003366;
  background: none;
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  z-index: 102;
  border-radius: 6px;
  transition: color 0.14s;
  line-height: 1;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #FFD700;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 22px 7px 20px 7px;
  }
}

/* SCROLLBAR (minimal) */
body {
  scrollbar-color: #003366 #F5F5F5;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F5F5F5;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #003366;
  border-radius: 7px;
  opacity: .79;
}

/* UTILITY CLASSES */
.mt-32 {margin-top: 32px;}
.mb-24 {margin-bottom: 24px;}
.text-center {text-align: center;}
.rounded {border-radius: 16px;}

/* END */
