/* RESET & BASE ---------------------------------------------------------- */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #1a2025;
  color: #f5f6fa;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  background-color: #181c20;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #FBBC05;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffd660;
}

ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
li {
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  color: #e4e8ee;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(30,39,50,0.12);
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 0.7em;
}
h4,h5,h6 {
  font-size: 1.05rem;
  margin-bottom: 0.6em;
}
strong, b {
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

/* LAYOUT CONTAINERS --------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232b33;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(25,34,41,0.15);
}

.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232b33;
  border-radius: 18px;
}
.features-grid,
.features .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature {
  background: #20252a;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(10,15,20,0.15);
  padding: 26px 22px 20px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.7px solid rgba(251,188,5,0.16);
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  filter: grayscale(50%) brightness(1.1);
}
.feature:hover, .feature:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 5px 24px 0 rgba(236,192,83,0.14), 0 1.5px 5px 0 #0B3D91;
  border-color: #FBBC05;
}

.text-section {
  font-size: 1rem;
  color: #d5d8df;
  margin-bottom: 25px;
  line-height: 1.74;
}
.text-section p {
  margin-bottom: 14px;
}

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

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232b33;
  border: 1.5px solid #393e47;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(35,43,51,0.10), 0 1.5px 5px 0 #0B3D91;
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.22s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(251,188,5,0.10), 0 1.5px 5px 0 #0B3D91;
  border-color: #FBBC05;
  transform: translateY(-3px) scale(1.012);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f5f6fa;
  color: #18202e;
  border-left: 5px solid #FBBC05;
  padding: 24px 28px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 22px 0 rgba(30,39,50,0.13);
  min-width: 230px;
  max-width: 520px;
  /* Ensures readability as per requirements */
}
.testimonials .testimonial-card blockquote {
  font-size: 1.17rem;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-style: italic;
  line-height: 1.57;
  color: #293042;
  margin-bottom: 12px;
}
.testimonial-card p {
  color: #424950;
}

@media (max-width: 800px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 13px;
  }
}

/* BUTTONS ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px 0 rgba(11,61,145,0.12);
  transition: background 0.22s, color 0.16s, transform 0.12s, box-shadow 0.18s;
  text-decoration: none;
}
.btn-primary {
  background: #0B3D91;
  color: #fff;
  border: 1.5px solid #FBBC05;
}
.btn-primary:hover, .btn-primary:focus {
  background: #23335b;
  color: #FBBC05;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px 0 rgba(20,66,164,0.18);
}
.btn-accent {
  background: #FBBC05;
  color: #18202e;
  border: 1.5px solid #0B3D91;
}
.btn-accent:hover, .btn-accent:focus {
  background: #ffe28c;
  color: #0B3D91;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px 0 rgba(251,188,5,0.1);
}

/* LABEL BADGES -------------------------------------------------------- */
.label-best {
  display: inline-block;
  margin-left: 10px;
  background: #23335b;
  color: #FBBC05;
  padding: 3px 12px;
  border-radius: 7px;
  font-size: 0.97em;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.07em;
  font-weight: bold;
}

/* HERO, CTA, STEPS ---------------------------------------------------- */
.hero {
  background: linear-gradient(115deg, #162235 0%, #23335b 100%);
  color: #f5f6fa;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #fff;
}
.hero p {
  font-size: 1.17rem;
  color: #e4e8ee;
  margin-bottom: 24px;
}

.cta {
  background: #0B3D91;
  padding: 50px 0 50px 0;
  border-radius: 18px;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 12px 0 rgba(11,61,145,0.12);
}
.cta h2 {
  color: #FBBC05;
}
.cta p {
  color: #fff;
  margin-bottom: 24px;
}

.steps {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232b33;
  border-radius: 18px;
}
.steps ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  list-style-position: inside;
  margin-top: 20px;
}
.steps ol li {
  background: #20252a;
  border-radius: 11px;
  border-left: 4px solid #FBBC05;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 270px;
  padding: 22px 20px 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(10,15,20,0.09);
}
.steps ol li h3 {
  color: #f5f6fa;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.steps ol li p {
  color: #d5d8df;
  font-size: 0.96rem;
}

@media (max-width: 800px) {
  .steps ol {
    flex-direction: column;
    gap: 16px;
  }
  .hero {
    padding: 36px 0 20px 0; 
  }
}

/* TABLES --------------------------------------------------------------- */
table {
  width: 100%;
  margin-bottom: 32px;
  background: #20252a;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(10,15,20,0.08);
}
thead tr {
  background: #23335b;
  color: #FBBC05;
}
thead th {
  padding: 16px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
}
tbody tr {
  border-bottom: 2px solid #353b46;
}
tbody td {
  padding: 13px 11px;
  color: #d5d8df;
  font-size: 1rem;
  vertical-align: top;
}
table ul {
  margin-bottom: 0;
}

/* ACCORDIONS / FAQ DL -------------------------------------------------- */
dl {
  margin-bottom: 28px;
}
dt {
  font-weight: bold;
  color: #FBBC05;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
}
dd {
  margin-left: 0;
  color: #d5d8df;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-left: 3px solid #0B3D91;
  padding-left: 19px;
  font-size: 1rem;
}

/* SUPPORT CONTACT / QUICK-LINKS / MAP ---------------------------------- */
.support-contact, .quick-links, .map {
  margin: 20px 0 26px 0;
}
.support-contact p, .quick-links p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.quick-links ul, .support-contact ul {
  margin-bottom: 0;
}
.map {
  background: #232b33;
  border-left: 6px solid #0B3D91;
  border-radius: 10px;
  padding: 25px 30px;
  font-size: 0.98rem;
  color: #d5d8df;
  margin-bottom: 20px;
}

/* FOOTER --------------------------------------------------------------- */
footer {
  background: #13161b;
  color: #b2b6bd;
  padding: 38px 0 0 0;
  margin-top: 60px;
  border-top: 2.5px solid #0B3D91;
}
footer .container {
  padding-bottom: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FBBC05;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #ffe28c;
  text-decoration: underline;
}
footer .contact-summary {
  font-size: 0.99rem;
  color: #b2b6bd;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .contact-summary img {
  width: 17px;
  height: 17px;
  margin-right: 9px;
  vertical-align: middle;
  filter: grayscale(80%) brightness(2.3);
}
footer .legal {
  width: 100%;
  margin-top: 12px;
  text-align: center;
  font-size: 0.92rem;
}
footer a img {
  margin-bottom: 9px;
  max-height: 42px;
}

@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .contact-summary, footer nav {
    margin-bottom: 10px;
  }
}

/* HEADER & NAV --------------------------------------------------------- */
header {
  background: #181c20;
  border-bottom: 2.5px solid #0B3D91;
  box-shadow: 0 3px 12px 0 rgba(20,39,61,0.10);
  position: relative;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 13px;
  padding-bottom: 13px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  color: #FBBC05;
  padding: 6px 6px 4px 6px;
  border-radius: 4px;
  transition: background 0.19s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #FBBC05;
  color: #181c20;
  text-decoration: underline;
}
header .btn-primary {
  margin-left: 23px;
  font-size: 1rem;
}
header img {
  max-height: 40px;
  margin-right: 8px;
}

@media (max-width: 1020px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
  }
  header nav {
    gap: 10px;
  }
}

/* MOBILE NAVIGATION --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  background: #232b33;
  color: #FBBC05;
  font-size: 2.2rem;
  border: none;
  padding: 5px 24px 5px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  margin-left: auto;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FBBC05;
  color: #232b33;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1600;
  top: 0;
  right: 0;
  bottom: 0;
  width: 95vw;
  max-width: 345px;
  background: #181c20;
  box-shadow: -3px 0 12px rgba(30,40,60,0.25);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.48,0.04,0.33,1.04);
  flex-direction: column;
  padding-top: 35px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FBBC05;
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-right: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 1601;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 28px 0 30px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: #FBBC05;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 4px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FBBC05;
  color: #11151a;
  text-decoration: underline;
}
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Make sure body can't scroll when mobile menu is open (to be handled by JS) */
body.menu-open {
  overflow: hidden;
}

/* RESPONSIVENESS ------------------------------------------------------- */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
  }
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .feature, .steps ol li, .testimonial-card, .card {
    padding: 1.1em 9px;
  }
  .cta {
    padding: 32px 0;
    border-radius: 9px;
  }
  .steps {
    padding: 1.2em 6px;
  }
  .section {
    padding: 1.2em 6px;
    border-radius: 9px;
  }
  .thanks-section {
    padding: 1em 0;
  }
}

/* MISCELLANEOUS -------------------------------------------------------- */
hr {
  border: 0;
  border-top: 1.5px solid #353b46;
  margin: 32px 0;
}

::-webkit-scrollbar {
  width: 12px;
  background: #20252a;
}
::-webkit-scrollbar-thumb {
  background: #23335b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0B3D91;
}

/* Feature items pattern ------------------------------------------------ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #222730;
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 20px;
  border-left: 4px solid #0B3D91;
}

/* THANK YOU SECTION -----------------------------------------------------*/
.thank-you-section {
  margin: 0 auto 60px auto;
  padding: 50px 16px 40px 16px;
  background: #20252a;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.07);
}

/* COOKIE CONSENT BANNER+MODAL ------------------------------------------*/
#cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3100;
  background: #232b33;
  color: #fff;
  padding: 22px 23px;
  font-size: 0.99rem;
  box-shadow: 0 -2px 16px 0 rgba(20,17,10,0.22);
  border-top: 3.5px solid #FBBC05;
  transition: transform 0.36s cubic-bezier(.48,0.04,.33,1.04), opacity 0.23s;
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner p {
  margin-right: 28px;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: #0B3D91;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 8px 23px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 1.5px 8px 0 rgba(11,61,145,0.06);
  outline: none;
}
.cookie-btn.settings {
  background: #FBBC05;
  color: #232b33;
  border: 1.5px solid #0B3D91;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffe28c;
  color: #0B3D91;
}
.cookie-btn.reject {
  background: #20252a;
  color: #fff;
  border: 1.5px solid #FBBC05;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FBBC05;
  color: #1a2025;
}
.cookie-btn.accept {
  background: #0B3D91;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #23335b;
  color: #FBBC05;
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
  }
  #cookie-banner p {
    margin-right: 0;
    margin-bottom: 12px;
  }
  #cookie-banner .cookie-buttons {
    flex-wrap: wrap;
    gap: 7px;
  }
}

/* COOKIE SETTINGS MODAL */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,29,60,0.72);
  z-index: 3200;
  justify-content: center;
  align-items: center;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #232b33;
  color: #f5f6fa;
  border-radius: 15px;
  max-width: 400px;
  width: 95vw;
  padding: 32px 26px 23px 26px;
  box-shadow: 0 2px 40px 0 rgba(10,15,20,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalIn 0.36s cubic-bezier(.48,0.04,.33,1.04);
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.89) translateY(24px); } 
  90% { transform: scale(1.025); } 
  to { opacity:1; transform: scale(1) translateY(0); }
}
#cookie-modal h2 {
  color: #FBBC05;
  font-size: 1.13rem;
  margin-bottom: 0.5em;
}
#cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
#cookie-modal input[type="checkbox"] {
  accent-color: #FBBC05;
  width: 1.12em;
  height: 1.12em;
  border-radius: 4px;
  margin-right: 7px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
#cookie-modal .cookie-modal-actions {
  margin-top: 9px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
#cookie-modal .cookie-btn {
  padding: 7px 23px;
  border-radius: 6px;
  font-size: 1rem;
}
@media (max-width: 500px) {
  #cookie-modal {
    padding: 19px 5px 9px 5px;
    font-size: 0.97rem;
  }
}

/* ANIMATIONS / MICRO-INTERACTIONS ------------------------------------- */
.btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.19s, color 0.17s, transform 0.13s, box-shadow 0.19s;
}
.feature, .feature:hover, .card, .card:hover, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.14s;
}
.card:hover, .feature:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 10px 36px 0 rgba(251,188,5,0.06), 0 1.5px 5px 0 #0B3D91;
}

/* Z-INDEXS for overlays, nav, etc ------------------------------------- */
header {
  z-index: 900;
}
.mobile-menu {
  z-index: 1600;
}
#cookie-banner {
  z-index: 3100;
}
#cookie-modal-overlay {
  z-index: 3200;
}

/* MISC SMALL FIXES ---------------------------------------------------- */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: #FBBC05;
  color: #161d25;
}

/* Accessibility: focus ring */
:focus {
  outline: 2px solid #FBBC05;
  outline-offset: 3px;
}

/* Utility: visually hidden for a11y */
.visually-hidden {
  position:absolute;
  width:1px; height:1px;
  margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0); border:0;
}
