/* --- CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f8fafc;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Arial Black', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1A2745;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, span, a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232946;
}
strong {
  color: #1A2745;
  font-weight: 600;
}

/* --- HEADER --- */
header {
  background: #ffffff;
  box-shadow: 0 4px 28px 0 rgba(27, 103, 125, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
header img {
  height: 48px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  padding: 8px 12px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  position: relative;
  color: #1A2745;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s, box-shadow 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3B82F;
  color: #1A2745;
}
.main-nav .cta-primary {
  background: #6EC1E4;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 30px;
  box-shadow: 0 2px 14px 0 rgba(111, 193, 228, 0.23);
  padding: 10px 24px;
  margin-left: 8px;
  transition: background 0.17s, transform 0.14s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #1A2745;
  color: #F3B82F;
  transform: scale(1.045);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #1A2745;
  cursor: pointer;
  padding: 6px 16px;
  transition: color 0.17s;
  z-index: 145;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #6EC1E4;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  box-shadow: 3px 0 48px 0 rgba(41, 140, 223, 0.10);
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: #1A2745;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F3B82F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 14px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 20px 30px;
  font-size: 1.18rem;
  border-bottom: 1px solid #e8ecee;
  background: #fff;
  color: #1A2745;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #6EC1E4;
  color: #fff;
}
.mobile-nav .cta-primary {
  background: #F3B82F;
  color: #1A2745;
  font-weight: 700;
  border-radius: 40px;
  margin: 18px 30px 0 30px;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(243, 184, 47, 0.13);
}
@media (max-width: 480px) {
  .mobile-nav .cta-primary {
    font-size: 1rem;
    padding: 15px 5px;
  }
}

/* --- PAGE STRUCTURE --- */
main {
  padding-top: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(65, 180, 238, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 640px) {
  .section {
    padding: 26px 8px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* --- HERO SECTION --- */
.hero {
  background: #6EC1E4;
  color: #fff;
  padding: 54px 0 54px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 14px 64px 0 rgba(27, 103, 125, 0.10);
  position: relative;
  margin-bottom: 48px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(36,46,111,0.13);
}
.hero p {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.6;
}

/* --- CTA BUTTONS --- */
.cta-primary {
  display: inline-block;
  background: #F3B82F;
  color: #1A2745;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 2px 14px 0 rgba(243, 184, 47, 0.14);
  padding: 14px 32px;
  margin-top: 4px;
  transition: background 0.18s, color 0.16s, transform 0.14s, box-shadow 0.16s;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1A2745;
  color: #F3B82F;
  transform: scale(1.045);
  box-shadow: 0 6px 36px 0 rgba(30,54,86,0.18);
}

/* --- LISTS --- */
ul, ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
  line-height: 1.5;
  padding-left: 2px;
}
ul li img {
  width: 30px;
  height: 30px;
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 17px;
  box-shadow: 0 4px 20px 0 rgba(111,193,228,0.10);
  transition: box-shadow 0.18s, transform 0.12s;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 230px;
  flex: 1 1 230px;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(243, 184, 47, 0.08), 0 4px 18px 0 rgba(27, 103, 125,0.09);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffde8;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(243,184,47,0.08), 0 1px 6px 0 rgba(111,193,228,0.05);
  color: #222444;
  transition: box-shadow .15s, transform .12s;
  min-width: 200px;
  border-left: 6px solid #F3B82F;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #222;
  font-style: italic;
}
.testimonial-card span {
  color: #6EC1E4;
  font-weight: 600;
  font-size: 0.97rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 34px 0 rgba(111,193,228, 0.10), 0 2px 18px 0 rgba(243, 184, 47, 0.09);
  transform: scale(1.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FOOTER --- */
footer {
  background: #1A2745;
  color: #fff;
  padding: 44px 0 18px 0;
  box-shadow: 0 -2px 20px 0 rgba(111, 193, 228, 0.07);
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
  min-width: 168px;
  margin: 0 18px;
}
.footer-nav a {
  color: #F3B82F;
  font-size: 1.01rem;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6EC1E4;
}
.footer-contact {
  font-size: 0.99rem;
  color: #fff;
  background-color: #6EC1E4;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 250px;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 3px;
  position: relative;
  top: 3px;
}
footer span {
  color: #fff;
  opacity: 0.7;
  font-size: 0.92rem;
  margin-top: 16px;
  display: block;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 14px;
    margin: 0 0 8px 0;
  }
}

/* --- MISC COMPONENTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid div {
  display: flex;
  align-items: center;
  background: #eaf9ff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 1px 6px rgba(111,193,228,0.06);
  transition: box-shadow 0.12s, transform 0.12s;
  gap: 10px;
  min-width: 170px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #1A2745;
}
.feature-grid div img {
  width: 26px;
  height: 26px;
}
.feature-grid div:hover {
  box-shadow: 0 2px 18px rgba(243,184,47,0.10);
  transform: scale(1.03);
}

/* --- FORMS (minimal for contact form if present) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #6EC1E4;
  outline: none;
}
button[type="submit"] {
  background: #6EC1E4;
  color: #fff;
  border: none;
  border-radius: 34px;
  padding: 12px 30px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.17s, color 0.1s, transform 0.11s;
}
button[type="submit"]:hover {
  background: #1A2745;
  color: #F3B82F;
  transform: scale(1.04);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  z-index: 999;
  box-shadow: 0 -4px 28px 0 rgba(111, 193, 228, 0.12);
  padding: 22px 22px 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 30px;
  animation: cookiePopin .5s cubic-bezier(.77,0,.18,1);
}
@keyframes cookiePopin {
  from{ opacity: 0; transform: translateY(100%); }
  to{ opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  max-width: 650px;
  font-size: 1rem;
  color: #fff;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  padding: 11px 23px;
  border-radius: 30px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-left: 3px;
  margin-top: 2px;
  transition: background .17s, color .17s, transform .09s;
}
.cookie-accept {
  background: #6EC1E4;
  color: #fff;
}
.cookie-accept:hover {
  background: #F3B82F;
  color: #1A2745;
}
.cookie-reject {
  background: transparent;
  color: #fff;
  border: 2px solid #F3B82F;
}
.cookie-reject:hover {
  background: #F3B82F;
  color: #1A2745;
}
.cookie-settings {
  background: #fff;
  color: #1A2745;
}
.cookie-settings:hover {
  background: #6EC1E4;
  color: #fff;
}
@media (max-width: 780px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 6px 13px 6px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: rgba(30,39,69,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .28s cubic-bezier(0.7,0,0.18,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232946;
  padding: 38px 28px 22px 28px;
  border-radius: 16px;
  min-width: 270px;
  max-width: 420px;
  box-shadow: 0 8px 36px 0 rgba(111,193,228,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalBounceIn .29s cubic-bezier(.76,0,.18,1);
}
@keyframes modalBounceIn {
  0% { transform: scale(0.86) translateY(70px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.27rem;
  color: #1A2745;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: #6EC1E4;
  width: 24px;
  height: 24px;
}
.cookie-category input[type=checkbox][disabled] {
  accent-color: #F3B82F;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
.cookie-modal .modal-actions button {
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 30px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  background: #6EC1E4;
  color: #fff;
  border: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-modal .modal-actions button.secondary {
  background: #fff;
  color: #1A2745;
  border: 2px solid #6EC1E4;
}
.cookie-modal .modal-actions button.secondary:hover {
  background: #F3B82F;
  color: #1A2745;
}
.cookie-modal .modal-actions button:hover {
  background: #F3B82F;
  color: #1A2745;
}
@media (max-width: 400px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 14px 4px 8px 4px;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1020px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 720px) {
  main {
    padding-top: 4px;
  }
  .card, .feature-grid div {
    min-width: 90vw;
    padding: 17px 11px;
  }
}
@media (max-width: 430px) {
  .hero {
    padding: 24px 0 27px 0;
    border-radius: 0 0 18px 18px;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 12px;
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #6EC1E4;
  border-radius: 6px;
}

/* --- MICRO-INTERACTIONS & ANIMATION CLASSES --- */
.card, .testimonial-card, .feature-grid div, .cta-primary, .main-nav a, button, .cookie-banner button {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.15s, 0.15s, 0.18s, 0.11s;
}

/* --- HIDE CONTENT FROM SCREEN READERS WHEN MODALS OPEN (for accessibility) --- */
body.modal-open {
  overflow: hidden;
  pointer-events: none;
}
body.modal-open .cookie-modal-overlay {
  pointer-events: all;
}

/* --- UTILITIES --- */
.bg-primary {
  background: #1A2745 !important;
  color: #fff !important;
}
.bg-secondary {
  background: #6EC1E4 !important;
  color: #fff !important;
}
.bg-accent {
  background: #F3B82F !important;
  color: #1A2745 !important;
}
.text-accent {
  color: #F3B82F !important;
}
.text-highlight {
  color: #6EC1E4 !important;
}
.text-bold {
  font-weight: 700 !important;
}
.rounded {
  border-radius: 15px !important;
}
.shadow {
  box-shadow: 0 4px 16px 0 rgba(111,193,228,0.09) !important;
}

/* --- PRINT FRIENDLY --- */
@media print {
  header,.main-nav,.footer-nav,.footer-contact,.mobile-menu,.cookie-banner,.cookie-modal-overlay,script{display:none!important;}
  .container{box-shadow:none!important;}
}
