/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-size: 16px;
  background: #fff;
  color: #1c1c28;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FA;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #19428A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7D046;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}
h1 { font-size: 2.75rem; color: #19428A; letter-spacing: -1px; }
h2 { font-size: 2rem; color: #19428A; letter-spacing: -.5px; }
h3 { font-size: 1.25rem; color: #19428A; }
h4, h5, h6 { color: #19428A; }
p, li {
  font-size: 1rem;
  color: #25252e;
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
}
small {
  font-size: 0.92rem;
  color: #63708d;
}

/* LAYOUT & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(25,66,138,0.045);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(25,66,138,0.10);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: transform .18s cubic-bezier(0.4,0,0.2,1), box-shadow .18s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 38px rgba(247,208,70,0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  background: #F6F8FA;
  border-left: 6px solid #F7D046;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(19,66,138,0.09);
  margin-bottom: 24px;
  max-width: 600px;
  color: #183259;
  transition: box-shadow .16s;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #212136;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #19428A;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* HEADER & NAVIGATION */
header {
  background: #19428A;
  color: #fff;
  width: 100%;
  box-shadow: 0 3px 16px 0 rgba(25,66,138,0.11);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
header nav ul {
  display: flex;
  gap: 24px;
}
header nav ul li {
  list-style: none;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 14px;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
header nav a.cta-btn {
  margin-left: 16px;
  background: #F7D046;
  color: #19428A;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 10px 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(247,208,70,.14), 0 2px 0 #fff2;
  border: 2px solid #F7D046;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
}
header nav a.cta-btn:hover,
header nav a.cta-btn:focus {
  background: #fff;
  color: #19428A;
  border: 2px solid #f7d046;
  box-shadow: 0 4px 24px rgba(25,66,138,0.11);
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #F7D046;
  color: #19428A;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: #F7D046;
  color: #19428A;
  font-size: 2rem;
  border-radius: 12px;
  padding: 5px 16px;
  position: relative;
  z-index: 113;
  margin-left: 16px;
  transition: background .13s, color .13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #fff;
  color: #19428A;
  outline: none;
  box-shadow: 0 0 0px 3px #F7D04699;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 340px;
  height: 100vh;
  background: #19428A;
  box-shadow: -6px 0 32px rgba(19,66,138,0.21);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .24s cubic-bezier(0.62,0,0.23,0.98);
  padding: 32px 20px 10px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 32px 0 rgba(25,66,138,0.23);
}
.mobile-menu-close {
  align-self: flex-end;
  color: #fff;
  font-size: 2rem;
  background: transparent;
  border: none;
  padding: 2px 7px 0 7px;
  margin-bottom: 26px;
  border-radius: 6px;
  transition: background 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F7D046;
  color: #19428A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #F7D046;
  padding: 10px 6px;
  border-radius: 10px;
  transition: background .12s, color .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff2;
  color: #fff;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
  header nav ul,
  header nav > a.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 540px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
}

/* MAIN & SECTIONS */
main {
  width: 100%;
  min-height: 76vh;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: none;
  padding: 12px 34px;
  background: #F7D046;
  color: #19428A;
  border-radius: 24px;
  border: 2px solid #F7D046;
  box-shadow: 0 2px 16px rgba(25,66,138,0.07);
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 10px;
  letter-spacing: .01em;
  outline: none;
  transition: background 0.16s, color 0.16s, transform 0.12s;
  min-width: 164px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #19428A;
  color: #fff;
  transform: scale(1.04);
  border: 2px solid #F7D046;
}
.cta-btn.secondary {
  background: #fff;
  color: #19428A;
  border: 2px solid #F7D046;
  box-shadow: 0 2px 18px rgba(25,66,138,0.08);
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: #F7D046;
  color: #19428A;
  border: 2px solid #F7D046;
}

/* GENERAL LIST STYLES */
ul {
  margin-left: 22px;
}
ul li, .text-section ul li {
  position: relative;
  margin-bottom: 14px;
  font-size: 1rem;
  padding-left: 18px;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #F7D046;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 7px;
}

/* FOOTER */
footer {
  background: #19428A;
  color: #fff;
  padding: 40px 0 26px 0;
  width: 100%;
  margin-top: 50px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
footer nav a {
  color: #F7D046;
  transition: color .14s;
  padding: 3px 6px;
  border-radius: 8px;
  font-size: 1rem;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: #F7D04633;
}
footer img {
  height: 38px;
}
footer .text-section p {
  font-size: .98rem;
  color: #f7f8fd;
}
footer div.social {
  display: flex;
  gap: 12px;
}
footer a img {
  height: 26px;
  width: 26px;
  filter: brightness(1) contrast(1) drop-shadow(0 3px 6px rgba(19,66,138,0.18));
  transition: filter 0.13s;
}
footer a:hover img,footer a:focus img {
  filter: brightness(1.6) contrast(1.14) drop-shadow(0 8px 14px #f7d04655);
}
footer small {
  margin-top: 8px;
  color: #F7D046;
  font-size: .94rem;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 900px) {
  .container { max-width: 98%; }
  .content-wrapper, .text-section {
    gap: 14px;
  }
  section, .section {
    padding: 36px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.08rem; }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 97%;
    font-size: .98rem;
  }
}
@media (max-width: 570px) {
  .container {
    padding: 0 10px;
  }
  section, .section {
    padding: 30px 4px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.95rem; }
  .cta-btn,.cta-btn.secondary {
    font-size: 0.97rem;
    padding: 11px 17px;
    min-width: 110px;
  }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.cta-btn, .cta-btn.secondary, .cta-btn:active {
  transition: background 0.17s, color 0.16s, box-shadow 0.17s, transform 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 38px rgba(25,66,138,0.19);
  transform: translateY(-4px) scale(1.021);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #F7D046;
  color: #19428A;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 13000;
  padding: 22px 20px 22px 26px;
  font-size: 1.06rem;
  box-shadow: 0 -4px 28px #19428A33;
  animation: slide-in-cookie .6s cubic-bezier(0.6,0.00,0.1,1);
  gap: 18px;
}
@keyframes slide-in-cookie {
  0% { transform: translateY(120%); }
  60% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.cookie-controls {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: #19428A;
  color: #F7D046;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 22px;
  border: 2px solid #F7D046;
  padding: 8px 22px;
  cursor: pointer;
  margin-left: 4px;
  transition: background .14s, color .15s;
}
.cookie-btn:hover {
  background: #fff;
  color: #19428A;
}
.cookie-btn.secondary {
  background: #fff;
  color: #19428A;
  border: 2px solid #19428A;
}
.cookie-btn.secondary:hover {
  background: #F7D046;
  color: #19428A;
}

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 7px 14px 7px;
    font-size: .98rem;
  }
  .cookie-controls { flex-direction: column; gap: 8px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,66,138,0.25);
  z-index: 13010;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fadein .22s cubic-bezier(0.6,0,0.3,1);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #19428A;
  border-radius: 22px;
  box-shadow: 0 4px 44px 0 #19428A29;
  padding: 32px 34px 26px 34px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 13022;
  position: relative;
  animation: modal-in .25s cubic-bezier(0.71,0.1,0.3,0.87);
}
@keyframes modal-in {
  from { transform: scale(0.92) translateY(32px); opacity: 0.4; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
  color: #19428A;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.03rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F6F8FA;
  border-radius: 20px;
  transition: background .16s;
  border: 2px solid #19428A;
}
.cookie-switch input:checked + .slider {
  background: #F7D046;
  border-color: #F7D046;
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #19428A;
  border-radius: 50%;
  transition: transform 0.16s;
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(20px);
  background: #fff;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .close-cookie {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #19428A;
  background: #F7D046;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal .close-cookie:hover {
  background: #19428A;
  color: #F7D046;
}

@media (max-width: 420px){
  .cookie-modal{padding:17px 6px 15px 10px;min-width:180px;}
}

/* HIGH VISUAL ENERGY ELEMENTS */
.cta-btn, .cta-btn.secondary {
  box-shadow: 0 8px 32px 0 #f7d04644, 0 3px 0 #fff3;
  letter-spacing:0.06em;
  font-family:'Montserrat',Arial,sans-serif;
  font-weight:800;
  text-transform:uppercase;
  border-width:2.5px;
}
.cta-btn:active {
  transform:scale(0.98);
}

section h2, section h1 {
  text-shadow:0 2px 6px #f7d04642,0 3px 0 #fff3;
  letter-spacing:0.03em;
}
.testimonial-card {
  border-left: 8px solid #19428A;
  background: #fff;
  color: #002A69;
  box-shadow: 0 2px 16px #F7D04633,0 2px 14px #19428A0d;
}
.testimonial-card p {
  color: #23232c;
}

/* ACCESSIBILITY & FOCUS STATES */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 3px solid #F7D046;
  outline-offset: 2px;
}

/* SCROLLBAR - energetic look */
::-webkit-scrollbar {
  width: 10px;
  background: #f6f8fa;
}
::-webkit-scrollbar-thumb {
  background: #F7D046;
  border-radius: 8px;
}

/* OVERRIDE LINK COLOR IN SECTIONS WITH WHITE BG */
section a:not(.cta-btn) {
  color: #19428A;
  text-decoration: underline dotted #F7D046 2px;
  transition: color .15s, background .13s, text-decoration-color .14s;
}
section a:not(.cta-btn):hover {
  background: #F7D04644;
  color: #F7D046;
  text-decoration-color: #19428A;
}

/* CARD PRICING HIGHLIGHT */
.card h3 span, li h3 span {
  color: #F7D046;
  font-size: 1rem;
  font-weight:600;
  margin-left:6px;
  letter-spacing: .01em;
}

/****** FIXED SPACING FOR CARDS AND CONTENT ******/
main .container > .content-wrapper > *,
main .container > .content-wrapper > .card-container,
main .container > .content-wrapper > .content-grid,
main .container > .content-wrapper > .testimonial-card {
  margin-bottom: 24px;
}
main .container > .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/****** ENSURE NO OVERLAP & GOOD Z-INDEX STACKING ******/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 100;
}
.mobile-menu {
  z-index: 9999;
}
.cookie-modal-overlay {
  z-index: 13010;
}
.cookie-modal {
  z-index: 13022;
}

/***** VIBRANT DIVIDERS *****/
hr {
  border: none;
  border-top: 3px solid #F7D046;
  margin: 30px 0;
  border-radius: 6px;
}

/***** END OF FILE *****/
