/* 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #10192B;
  color: #FFFFFF;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F2C641;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
}
ul, ol {
  margin-left: 20px;
}


/* TYPOGRAPHY ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F2C641;
  text-shadow: 0 2px 12px rgba(45,92,145,0.11), 0 0px 2px #222c46;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #F7F8FF;
}
strong, b {
  font-weight: 700;
}
.text-section h2, .text-section h3 {
  color: #F2C641;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
}
.text-section li {
  margin-bottom: 8px;
}

/* LAYOUT CONTAINERS ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #151d2f;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(45,92,145,0.14);
  padding: 30px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: rgba(19, 25, 44, 0.85);
  border-radius: 32px;
  box-shadow: 0 4px 26px 0 rgba(45,92,145,0.21);
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}


/* HEADER --------------------------------------------------------------- */
header {
  width: 100%;
  background: #13192C;
  border-bottom: 2px solid #22305c;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
  padding: 10px 0 10px 5px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-grow: 1;
}
.main-nav a {
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #FFFFFF;
  position: relative;
  padding: 4px 10px;
  border-radius: 5px;
  transition: background 0.14s, color 0.22s;
}
.main-nav a:hover, .main-nav a.active {
  background: #2D5C91;
  color: #F2C641;
}
.btn-primary {
  background: #F2C641;
  color: #201D2B;
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  margin-left: 26px;
  margin-right: 18px;
  box-shadow: 0 2px 15px 0 rgba(242,198,65,0.11);
  cursor: pointer;
  outline: none;
  text-shadow: none;
  transition: background 0.23s, color 0.18s, box-shadow 0.23s;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffe477;
  color: #181A22;
  box-shadow: 0 0px 18px 2px #ffe47780;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #F2C641;
  cursor: pointer;
  margin-right: 16px;
  margin-left: auto;
  display: none;
  z-index: 1002;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F2C641;
}

/* MOBILE MENU ------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  background: #1b2240ee;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.4,1.4,.4,1);
  pointer-events: none;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 26px 24px 12px auto;
  background: none;
  border: none;
  color: #F2C641;
  font-size: 2.8rem;
  cursor: pointer;
  z-index: 2002;
  transition: color 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-left: 38px;
  margin-top: 15px;
}
.mobile-nav a {
  color: #F2C641;
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  text-shadow: 0 1px 12px #2D5C9188;
  margin-bottom: 5px;
  padding: 7px 15px;
  border-radius: 10px;
  transition: color 0.17s, background 0.15s;
  min-width: 185px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #222C44;
  background: #ffe477;
}

/* HERO & GENERAL SECTIONS ------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #191e33;
  box-shadow: 0 6px 28px 0 rgba(45,92,145,0.13);
}
section:nth-child(even) {
  background: #10192B;
}

/* CARDS ------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 #2D5C9121;
  color: #251F35;
  min-width: 0;
  max-width: 750px;
}
.testimonial-card p {
  color: #1A1B22;
  font-size: 1.11rem;
  margin-bottom: 9px;
}
.testimonial-card span {
  color: #2D5C91;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* TABLES, DL, LISTS ------------------------------------------------- */
table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  background: #232944;
  color: #F7F8FF;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 #2D5C9133;
}
th, td {
  padding: 15px 18px;
  border-bottom: 1px solid #2D5C9161;
  text-align: left;
}
th {
  background: #2D5C91;
  color: #FFE477;
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
dl {
  margin-bottom: 15px;
}
dl dt {
  margin-top: 15px;
  font-weight: 700;
  color: #F2C641;
}
dl dd {
  margin-left: 22px;
  margin-bottom: 5px;
  color: #FFFFFF;
}
ul, ol {
  margin-bottom: 22px;
}
ul li, ol li {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F7F8FF;
  font-size: 1rem;
}
ul li img, ol li img {
  height: 28px;
  width: 28px;
  margin-right: 5px;
  flex-shrink: 0;
}


/* FOOTER ------------------------------------------------------------ */
footer {
  width: 100%;
  background: #181A22;
  padding: 40px 0 14px 0;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 3px solid #22305c;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #F2C641;
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px 13px;
  transition: color 0.18s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #ffe477;
  color: #201D2B;
}
.contact-details {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #F7F8FF;
}
.contact-details img {
  height: 22px;
  width: 22px;
  margin-right: 5px;
}
footer span {
  color: #565168;
  font-size: 0.94rem;
  margin-top: 6px;
  letter-spacing: 0.01em;
}


/* COOKIE CONSENT BANNER & MODAL ----------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222D3E;
  color: #F2C641;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw 18px 8vw;
  z-index: 4000;
  box-shadow: 0 -2px 20px rgba(45,92,145,0.16);
  gap: 24px;
  border-radius: 16px 16px 0 0;
  opacity: 0.97;
  font-size: 1.09rem;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner button {
  font-family: 'Fredoka One', 'Roboto', Arial, sans-serif;
  padding: 10px 21px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 8px #2D5C9136;
  margin-right: 2px;
  outline: none;
}
.cookie-consent-banner .accept {
  background: #F2C641;
  color: #191E33;
}
.cookie-consent-banner .accept:hover {
  background: #ffe477;
  color: #1b2240;
}
.cookie-consent-banner .reject {
  background: #2D5C91;
  color: #FFFFFF;
}
.cookie-consent-banner .reject:hover {
  background: #22305c;
  color: #F2C641;
}
.cookie-consent-banner .settings {
  background: #242d49;
  color: #F2C641;
  border: 1px solid #F2C641;
}
.cookie-consent-banner .settings:hover {
  background: #F2C641;
  color: #191E33;
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #10192bb9;
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #181A22;
  padding: 32px 28px 28px 28px;
  border-radius: 22px;
  box-shadow: 0 8px 36px 8px #2D5C9159;
  max-width: 475px;
  width: 92vw;
  color: #F2C641;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
  animation: cookieModalPopIn 0.5s cubic-bezier(.4,1.4,.4,1) 1;
}
.cookie-modal h2 {
  color: #F2C641;
  font-size: 1.33rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}
.cookie-modal .category-label {
  font-size: 1.08rem;
  color: #FFE477;
}
.cookie-modal .category-toggle {
  width: 42px;
  height: 24px;
  background: #444e69;
  border-radius: 14px;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .category-toggle.on {
  background: #F2C641;
}
.cookie-modal .category-toggle::after {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 3px;
  transition: left 0.21s;
}
.cookie-modal .category-toggle.on::after {
  left: 20px;
  background: #FFE477;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #F2C641;
  font-size: 2rem;
  position: absolute;
  top: 12px;
  right: 19px;
  cursor: pointer;
}
@keyframes cookieModalPopIn {
  0% {
    transform: scale(0.85);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* BUTTONS ----------------------------------------------------------- */
button, .btn-primary {
  transition: background 0.21s, color 0.18s, box-shadow 0.2s;
}
button:active, .btn-primary:active {
  transform: scale(0.97);
}

/* MICRO-INTERACTIONS ------------------------------------------------ */
a, .btn-primary, button {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #2D5C9199, 0 0 2px #ffe477;
  transform: translateY(-2px) scale(1.01);
  transition: box-shadow 0.23s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 5px 25px #2D5C9180, 0 0 6px #ffe477cc;
  transform: translateY(-2px) scale(1.01);
  transition: box-shadow 0.23s, transform 0.17s;
}

/* ACCENTS/NEON BORDERS ---------------------------------------------- */
section, .card, .testimonial-card, .cookie-modal {
  border: 1.5px solid #2D5C91bb;
}

/* NEON EFFECTS ------------------------------------------------------ */
.btn-primary, .footer-nav a:hover, .mobile-nav a:hover, .cookie-consent-banner .accept, .cookie-consent-banner .settings:hover {
  box-shadow: 0 0 10px #ffe477AA, 0 0 6px #2D5C9177;
}

/* RESPONSIVE -------------------------------------------------------- */
@media (max-width: 1180px) {
  .container { max-width: 97vw; padding: 0 8px; }
}
@media (max-width: 900px) {
  .content-wrapper { gap: 16px; }
  .footer-nav { gap: 15px; }
  .contact-details { gap: 8px; font-size: 0.95rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .btn-primary { margin-left: 6px; }
  header { flex-wrap: wrap; justify-content: space-between; }
  .section, section { padding: 26px 6px; margin-bottom: 40px; }
  .card-container, .content-grid, .footer-nav { flex-direction: column; gap: 19px; }
  .container { padding: 0 4px; }
  .testimonial-card { padding: 14px 10px; }
  .content-wrapper { gap: 12px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 17px; }
}
@media (max-width: 530px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.16rem; }
  .cookie-consent-banner { flex-direction: column; gap: 8px; padding: 16px 4vw 14px 4vw; font-size: 0.98rem; }
  .testimonial-card { font-size: 0.97rem; }
  .cookie-modal { padding: 22px 8px 18px 8px; min-width: 0; width: 98vw; }
}

/* CUSTOM SCROLLBAR -------------------------------------------------- */
::-webkit-scrollbar { width: 10px; background: #191e33; }
::-webkit-scrollbar-thumb { background: #2D5C91aa; border-radius: 4px; }

/* ACCESSIBILITY ----------------------------------------------------- */
:focus-visible { outline: 2px solid #F2C641; outline-offset: 2px; }

/* UTILITY CLASSES --------------------------------------------------- */
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.rounded { border-radius: 18px; }
.shadow { box-shadow: 0 6px 26px 0 rgba(45,92,145,0.21); }

/* END */
