/* RESET & BASELINE -------------------------------------- */
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, main, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #193059;
  background: #fdfdff;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
}
strong, b {
  font-weight: 700;
}
a {
  color: #193059;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FFD700;
  outline: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* FONT FACE ---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #193059;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.13;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, blockquote {
  font-size: 1.05rem;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  background: #A7C3E7;
  color: #193059;
  padding: 18px 24px;
  border-left: 6px solid #FFD700;
  border-radius: 12px;
  margin: 20px 0 30px 0;
}

/* LAYOUT CONTAINER RULES --------------------------------- */
.container {
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(25,48,89,0.06);
}

/* VIBRANT ENERGETIC COLOR SCHEME ------------------------- */
:root {
  --color-primary: #193059;
  --color-secondary: #A7C3E7;
  --color-accent: #FFD700;
  --color-bg-light: #fdfdff;
  --color-bg-card: #fff;
  --color-danger: #e13d3d;
  --color-success: #37c471;
  --color-cta-hover: #ffdb66;
  --color-neutral: #566073;
}

/* HEADER ------------------------------------------------- */
header {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 13px rgba(25,48,89,0.10);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 7px;
  transition: background 0.23s, color 0.23s;
  line-height: 1.1;
}
nav a:hover, nav a:focus {
  background: var(--color-accent);
  color: #193059;
}
.cta-main {
  background: var(--color-accent);
  color: #193059;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 10px 22px;
  border-radius: 26px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(253,215,0,0.15);
  border: none;
  outline: none;
  letter-spacing: 0.5px;
  line-height: 1.1;
  display: inline-block;
}
.cta-main:hover, .cta-main:focus {
  background: var(--color-cta-hover);
  color: #062353;
  box-shadow: 0 6px 24px rgba(253,215,0,0.21);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #FFD700;
  border-radius: 8px;
  padding: 8px 12px;
  margin-left: 10px;
  border: none;
  outline: none;
  transition: background 0.15s, color 0.13s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #193059;
}

/* MOBILE MENU (SLIDE IN) --------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,48,89,0.96);
  z-index: 1004;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.9,-0.2,.18,1.1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 24px 26px 0 0;
  color: #FFD700;
  background: none;
  border: none;
  transition: color 0.22s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: rgba(255,255,255,0.11);
  border-radius: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 36px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #FFD700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 900;
  padding: 10px 0 10px 0;
  border-radius: 4px;
  width: 100%;
  letter-spacing: 0.15ch;
  transition: background 0.17s, color 0.15s;
  line-height: 1.14;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

/* HERO SECTION ------------------------------------------- */
.hero {
  background: linear-gradient(89deg,#A7C3E7 0%, #FFD700 93%, #fff 100%);
  background-size: 500% 500%;
  animation: hero-bg 11s ease-in-out infinite;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 20px rgba(25,48,89,0.10);
  min-height: 340px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
@keyframes hero-bg {
  0% {background-position: 0 0;}
  50% {background-position: 100% 100%;}
  100% {background-position: 0 0;}
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
}
.hero h1 {
  color: #193059;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.09;
}
.hero p {
  color: #04204c;
  font-size: 1.13rem;
  line-height: 1.5;
  margin-bottom: 28px;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.05ch;
  border: none;
  outline: none;
  padding: 12px 34px;
  border-radius: 80px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(25,48,89,0.13);
  transition: background 0.23s, color 0.23s, transform 0.13s, box-shadow 0.15s;
  cursor: pointer;
}
.cta-primary {
  background: var(--color-accent);
  color: #193059;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffef92;
  color: #062353;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 21px 0 rgba(253,215,0,0.29);
}
.cta-secondary {
  background: var(--color-primary);
  color: #fff;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: #193059;
  transform: translateY(-2px) scale(1.02);
}

/* ADVANTAGES, FEATURE GRID, ETC -------------------------- */
.feature-grid, .faq-list, .service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature, .service-highlights li {
  flex: 1 1 220px;
  min-width: 190px;
  background: #ffeeba;
  color: #00204c;
  box-shadow: 0 3px 18px 0 rgba(25,48,89,0.09);
  border-radius: 20px;
  padding: 30px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.21s, box-shadow 0.23s, background 0.34s;
  border: 2px solid #FFD700;
}
.feature:hover, .feature:focus-within {
  background: #FFD700;
  border: 2px solid #193059;
  box-shadow: 0 10px 36px 0 rgba(25,48,89,0.10), 0 0 0 4px #A7C3E7;
  transform: scale(1.035) translateY(-3px);
}
.feature img {
  height: 42px;
  width: 42px;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
  color: #193059;
}
.feature p, .service-highlights li {
  font-size: 1.01rem;
  color: #353b59;
}
.service-highlights ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.service-highlights li {
  background: #A7C3E7;
  color: #193059;
  border-radius: 15px;
  padding: 13px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04ch;
  border: 2px solid #FFD700;
}

/* CARD-LIKE ELEMENTS ------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 220px;
  box-shadow: 0 3px 13px 0 rgba(25,48,89,0.09);
  padding: 18px 20px;
  transition: transform 0.15s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.card:hover, .card:focus-within {
  transform: scale(1.025) translateY(-2px);
  box-shadow: 0 7px 26px 0 rgba(25,48,89,0.13);
}

/* CONTENT GRID & FLEX MICRO-LAYOUTS --------------------- */
.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;
}
.text-section {
  flex: 1 1 290px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* TESTIMONIALS ------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #A7C3E7;
  color: #10204c;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(25,48,89,0.10);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: #193059;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1.09rem;
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.testimonial-card div div {
  font-size: 1.01rem;
  color: #10204c;
}

/* FAQ & OL LIST ----------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
ol {
  padding-left: 25px;
  margin-bottom: 14px;
}
ol li {
  margin-bottom: 8px;
}

/* FOOTER ------------------------------------------------- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0 0 14px 0;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 38px 0 12px 0;
  border-bottom: 1.5px solid #233869;
}
.footer-brand {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFD700;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 13px;
  transition: background 0.18s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus { background: rgba(255,255,255,0.19); color: #FFF; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #fff;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact img {
  height: 18px;
  width: 18px;
}
.footer-credits {
  font-size: 0.89rem;
  color: #A7C3E7;
  margin-top: 16px;
  text-align: center;
}

/* COOKIE CONSENT BANNER & MODAL ------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe7;
  color: #193059;
  box-shadow: 0 -5px 28px 0 rgba(25,48,89,0.1);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding: 23px 32px 16px 32px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 24px 24px 0 0;
  animation: cookieIn 0.75s cubic-bezier(.52,2,-0.04,.95) forwards;
}
@keyframes cookieIn {
  from { transform: translateY(120%); opacity: 0 }
  to   { transform: translateY(0); opacity: 1 }
}
.cookie-banner p {
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 1.01rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.13s, transform 0.1s;
}
.cookie-accept {
  background: var(--color-accent);
  color: #193059;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(253,215,0,0.09);
}
.cookie-accept:hover, .cookie-accept:focus { background: #ffec69; color: #062353; }
.cookie-reject {
  background: var(--color-danger);
  color: #fff;
  font-weight: 700;
}
.cookie-reject:hover, .cookie-reject:focus { background: #b42222; }
.cookie-settings {
  background: var(--color-secondary);
  color: #022044;
  font-weight: 700;
}
.cookie-settings:hover, .cookie-settings:focus { background: #c0d7f2; color: #062353; }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1200;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(25,48,89,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #193059;
  border-radius: 20px;
  padding: 38px 42px 30px 42px;
  max-width: 410px;
  min-width: 270px;
  box-shadow: 0 10px 34px 0 rgba(25,48,89,0.21);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookiePop .38s cubic-bezier(.69,2,-0.33,.99) backwards;
}
@keyframes cookiePop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  color: #193059;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0c295c;
  font-weight: 700;
  cursor: pointer;
}
.cookie-toggle {
  width: 44px;
  height: 25px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #A7C3E7;
  border-radius: 32px;
  transition: background 0.2s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--color-success);
}
.cookie-slider:before {
  position: absolute;
  left: 4px; top: 3px;
  content: "";
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 13px;
  background: none;
  color: #e13d3d;
  font-size: 1.44rem;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.16s, background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
  background: #e13d3d;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 11px;
}

/* RESPONSIVE DESIGN -------------------------------------- */
@media (max-width: 1140px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 19px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .feature-grid {
    gap: 17px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 7px;
  }
  nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-brand {
    font-size: 1.04rem;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 7px;
  }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  .hero .container {
    min-height: 225px;
    padding-bottom: 10px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    min-width: unset;
    width: 100%;
    padding: 21px 12px 17px 12px;
  }
  .testimonial-card {
    padding: 16px 11px;
    flex-direction: column;
    gap: 12px;
  }
  .card-container { gap: 15px; }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .text-section {
    min-width: unset;
    width: 100%;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    display: none;
  }
  .cta-main {
    margin-left: 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 13px 9px 13px;
    gap: 9px;
    font-size: 0.97rem;
  }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.36rem; }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 17px 7vw 19px 7vw;
  }
}

/* FOCUS/ACCESSIBILITY ----------------------------------- */
:focus-visible {
  outline: 2.5px solid #FFD700 !important;
  outline-offset: 3px;
}

/* UTILITIES --------------------------------------------- */
.hide {
  display: none !important;
}

/* END */
