/* ===== 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, 
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 {
  height: 100%;
}
body {
  min-height: 100%;
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: linear-gradient(120deg, #f5f8fa 60%, #e3ebf7 100%);
  color: #003259;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #003259;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2A900;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
:focus {
  outline: 2px solid #F2A900;
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #003259;
  line-height: 1.15;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem; /* 22px */
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  color: #003259;
}
strong {
  font-weight: 700;
}

/* ====== LAYOUT CONTAINER ====== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  padding: 0 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(100deg, #F5F8FA 60%, #e3ebf7 100%);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0,50,89,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(90deg, #003259 60%, #146494 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
  padding: 4px 0 2px 0;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #F2A900;
  border-radius: 1px;
  transition: width 0.2s;
  margin-top: 2px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
header nav a:hover, header nav a:focus {
  color: #F2A900;
}
header img {
  height: 48px;
  width: auto;
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, #F2A900 65%, #FFD15C 100%);
  color: #003259;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 30px;
  box-shadow: 0 2px 8px rgba(242,169,0,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 16px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFD15C 65%, #F2A900 100%);
  color: #003259;
  box-shadow: 0 4px 16px rgba(242,169,0,0.14);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 102;
  background: #003259;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  box-shadow: 0 2px 10px rgba(0,50,89,0.18);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2A900;
  color: #003259;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 340px;
  max-width: 100vw;
  background: linear-gradient(130deg, #fff 80%, #F5F8FA 100%);
  box-shadow: -2px 0 20px rgba(0,50,89,0.09);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 16px 28px;
  gap: 20px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  color: #003259;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.18s;
  z-index: 11;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F2A900;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #003259;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2A900;
  color: #003259;
}
@media (max-width: 990px) {
  header .container nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== MAIN LAYOUT ===== */
main {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: linear-gradient(110deg, #F5F8FA 65%, #e3ebf7 100%);
  box-shadow: 0 2px 10px rgba(0,50,89,0.06);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(0,50,89,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  min-width: 260px;
  max-width: 340px;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px rgba(0,50,89,0.16);
  transform: translateY(-2px) scale(1.015);
}

.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;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 260px;
  max-width: 350px;
  padding: 28px 24px 24px 24px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(0, 50, 89, 0.11);
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: #192637;
  transition: box-shadow 0.18s;
}
.testimonial-card strong {
  color: #003259;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 8px;
}
.testimonial-card p {
  color: #232e3a;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 18px rgba(0,50,89,0.19);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 50, 89,0.08);
  padding: 24px 18px 22px 18px;
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 4px 16px rgba(0,50,89,0.13);
  transform: translateY(-1px) scale(1.01);
}
.features-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,50,89,0.07);
  border-radius: 10px;
}
.comparison-table th,
.comparison-table td {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 14px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #e3ebf7;
}
.comparison-table th {
  background: #F2A900;
  color: #003259;
  font-weight: 700;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: #f7f1dd;
  transition: background 0.18s;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(90deg, #003259 55%, #146494 100%);
  color: #fff;
  padding: 44px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.93;
  transition: color 0.18s, opacity 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #F2A900;
  opacity: 1;
}
footer img {
  height: 42px;
  margin-bottom: 18px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-details img {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 34px 10px;
  }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .testimonials-list, .features-grid, .card-container {
    gap: 14px;
  }
  footer .container {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  main {
    gap: 28px;
    margin-top: 10px;
    margin-bottom: 14px;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .section {
    padding: 22px 3vw;
    margin-bottom: 36px;
  }
  .card-container, .features-grid, .content-grid, .testimonials-list {
    flex-direction: column;
    gap: 14px;
  }
  .card, .testimonial-card, .features-grid > div {
    min-width: unset;
    max-width: 100%;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 8px 5px;
    font-size: 0.98rem;
  }
  .mobile-menu {
    width: 94vw;
    min-width: 0;
    padding: 22px 10px 16px 10px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 10px 1vw;
    margin-bottom: 24px;
  }
  .btn-primary {
    padding: 8px 12px;
    font-size: 0.97rem;
  }
  header img, footer img {
    height: 34px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #fff 70%, #F5F8FA 100%);
  border-top: 2px solid #F2A900;
  box-shadow: 0 -2px 16px rgba(0,50,89,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  font-size: 1rem;
  transition: transform 0.29s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #003259;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 22px;
  font-size: 1rem;
  color: #003259;
  background: #F2A900;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD15C;
  color: #003259;
  box-shadow: 0 2px 8px rgba(242,169,0,0.13);
}
.cookie-btn--secondary {
  background: #fff;
  border: 1.5px solid #003259;
  color: #003259;
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: #F5F8FA;
  color: #003259;
  border-color: #F2A900;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8px 14px 8px;
    font-size: 0.98rem;
  }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 50, 89, 0.22);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 50px rgba(0, 50, 89, 0.18);
  padding: 38px 28px 28px 28px;
  max-width: 410px;
  width: 96vw;
  color: #003259;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalIn 0.25s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalIn {
  from {transform: translateY(60px); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: none;
  border: none;
  color: #003259;
  font-size: 1.9rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #F2A900;
}
.cookie-modal h2 {
  font-size: 1.27rem;
  margin-bottom: 10px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #003259;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #e3ebf7;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cookie-toggle[aria-checked="true"] {
  background: #F2A900;
}
.cookie-toggle-thumb {
  position: absolute;
  height: 18px;
  width: 18px;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,50,89,0.08);
  transition: left 0.15s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  left: 18px;
}
.cookie-category--essential label {
  opacity: 0.75;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 7px;
    max-width: 96vw;
  }
}

/* ===== MODERN ANIMATIONS & TRANSITIONS ===== */
.card, .testimonial-card, .features-grid > div, .btn-primary, .cookie-btn {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.12s;
}
.section, .card-container, .features-grid, .testimonials-list, .content-grid,
.text-image-section, .feature-item, .contact-details {
  gap: 20px;
}

/* ===== MISC CLASSES & UTILITIES ===== */
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

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