/*--------------------------------------------------
  CSS RESET & BASE STYLES
--------------------------------------------------*/
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 {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  background: #F7FBFE;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: #205085;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #ffba34;
  text-decoration: underline;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
}
*:focus {
  outline: 2px solid #205085;
  outline-offset: 2px;
}

/*--------------------------------------------------
  BRAND COLORS & FONTS
--------------------------------------------------*/
:root {
  --color-primary: #205085;
  --color-secondary: #1C242C;
  --color-accent: #F0E6D2;
  --color-fun1: #FE8B37;
  --color-fun2: #65C2ED;
  --color-fun3: #1DB993;
  --color-bg-light: #F7FBFE;
  --color-bg-dark: #205085;
  --shadow-card: 0 6px 24px rgba(32,80,133,0.15);
  --radius: 20px;
  --transition: 0.3s cubic-bezier(0.48,0.04,0.52,0.97);
  --fun-shadow: 0 3px 12px 0 rgba(254,139,55,0.07), 0 0.5px 2px 0 rgba(101,194,237,0.06);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

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

/*--------------------------------------------------
  BODY & CONTAINER
--------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/*--------------------------------------------------
  TYPOGRAPHY SCALE & STYLES
--------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
}
h4, h5, h6 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 16px;
  font-size: 1.04rem;
  font-family: var(--font-body);
}
strong {
  color: var(--color-fun1);
  font-weight: 700;
}

ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0px;
  position: relative;
}
ul li::before {
  content: '•';
  color: var(--color-fun2);
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 1.2em;
  line-height:1;
}

.text-section h2, .text-section h3 {
  color: var(--color-fun1);
  font-weight: 800;
}

/*--------------------------------------------------
  HEADER & NAVIGATION
--------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(101,194,237,0.08);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 86px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.065rem;
}
header nav a {
  color: var(--color-secondary);
  position: relative;
  border-radius: 9px;
  padding: 8px 16px;
  transition: background .22s, color .22s;
}
header nav a:hover, header nav a.active {
  color: #fff;
  background: var(--color-fun1);
  box-shadow: var(--fun-shadow);
}
.header-flex a img {
  max-height: 54px;
  width: auto;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-fun1);
  color: #fff;
  font-weight: 900;
  border: none;
  border-radius: 48px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 10px 30px;
  box-shadow: 0 4px 18px rgba(254,139,55,.13), 0 1px 4px rgba(32,80,133,.077);
  cursor: pointer;
  transition: background 0.18s, transform 0.14s;
  letter-spacing: 0.03em;
  margin-left: 10px;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-fun2);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.04);
}

/*--------------------------------------------------
  MOBILE BURGER MENU BUTTON
--------------------------------------------------*/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: var(--color-fun1);
  border: none;
  background: none;
  padding: 6px 12px;
  margin-left: 10px;
  border-radius: 50%;
  transition: background 0.18s, color 0.22s;
  cursor: pointer;
  z-index: 1403;
}
.mobile-menu-toggle:hover {
  background: var(--color-fun1);
  color: #fff;
}

@media (min-width: 1100px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/*--------------------------------------------------
  MOBILE MENU OVERLAY
--------------------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 48px rgb(101 194 237 / 10%);
  z-index: 1677;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.64, 0.13, 0.23, 0.96);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-fun2);
  margin: 28px 0 0 20px;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 50%;
  transition: background 0.22s;
  z-index: 2001;
}
.mobile-menu-close:hover {
  background: var(--color-fun1);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 60px 0 0 26px;
  width: 80vw;
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.mobile-nav a {
  color: var(--color-secondary);
  padding: 11px 16px;
  border-radius: 8px;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover {
  background: var(--color-fun1);
  color: #fff;
}

@media (min-width: 1100px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  header nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
}

/*--------------------------------------------------
  SECTIONS, LAYOUT, AND STRUCTURE
--------------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  animation: fadeInUp 0.85s ease;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: translateY(0); }
}

.content-wrapper {
  max-width: 880px;
  margin: 0 auto;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  flex: 1 1 220px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--fun-shadow);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s, transform 0.16s;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(254,139,55,0.13), 0 2px 5px 0 rgba(32,80,133,0.10);
  transform: translateY(-6px) scale(1.025);
}
.features-grid img {
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  border: 2.5px solid var(--color-fun2);
  box-shadow: 0 2px 8px rgba(32,80,133,0.06);
  margin-bottom: 18px;
  width: 48px;
  height: 48px;
}
.features-grid h3 {
  font-size: 1.4rem;
  margin-bottom: 7px;
  color: var(--color-fun1);
}
.features-grid p {
  color: var(--color-secondary);
  font-size: 1rem;
}

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

.quick-facts {
  font-size: 1rem;
  margin-top: 18px;
  background: var(--color-fun2);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(29,185,147,0.10);
  letter-spacing: 0.03em;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 22px 22px;
  transition: box-shadow .15s, transform .15s;
}
.card:hover {
  box-shadow: 0 7px 20px rgb(101,194,237,0.16);
  transform: scale(1.024);
}

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

.text-section {
  margin-bottom: 20px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 8px solid var(--color-fun1);
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(32,80,133,.10);
  font-family: var(--font-body);
  color: #17212A;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.13rem;
  color: var(--color-secondary);
}
.testimonial-card span {
  font-size: 0.99rem;
  color: var(--color-fun2);
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f9fbfc;
  border-radius: 16px;
  box-shadow: 0 2px 7px 0 rgba(32,80,133,0.08);
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
}

.service-list li, .content-wrapper ul li {
  padding-left: 26px;
  position: relative;
}
.service-list li::before {
  content: '\2605';
  color: var(--color-fun1);
  font-size: 1.12em;
  position: absolute;
  left: 0;
  top: 1px;
}

/*--------------------------------------------------
  FOOTER
--------------------------------------------------*/
footer {
  background: var(--color-primary);
  color: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 48px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding: 32px 20px 34px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
footer nav a {
  color: #fff;
  font-size: 0.99rem;
  transition: color 0.19s;
}
footer nav a:hover {
  color: var(--color-fun1);
}
footer img {
  max-width: 70px;
  margin-bottom: 18px;
}
footer strong {
  color: #fff;
}

/*--------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
--------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-accent);
  color: var(--color-secondary);
  width: 100vw;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  box-shadow: 0 -6px 24px rgba(32,80,133, 0.11);
  font-size: 1rem;
  animation: fadeIn 0.7s ease;
}
@keyframes fadeIn { 0% { opacity:0; bottom:-60px;} 100% { opacity:1; bottom:0; } }
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button,
.cookie-modal button {
  border: none;
  padding: 10px 22px;
  font-size: 0.98rem;
  font-family: var(--font-display);
  border-radius: 32px;
  cursor: pointer;
  font-weight: 700;
  margin-right: 4px;
  transition: background .17s, color .15s;
}
.cookie-banner .accept {
  background: var(--color-fun1);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--color-fun2);
  color: var(--color-secondary);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-fun2);
}
.cookie-banner .reject:hover {
  background: var(--color-fun2);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--color-fun2);
  color: #fff;
}
.cookie-banner .settings:hover {
  background: var(--color-fun1);
  color: #fff;
}

.cookie-modal-bg {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,80,133,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10009;
  transition: opacity .3s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 410px;
  width: 90vw;
  padding: 35px 22px 30px 22px;
  box-shadow: 0 5px 32px rgba(32,80,133,0.16);
  position: relative;
  animation: fadeInUp 0.4s cubic-bezier(0.22,0.83,0.62,1.05);
  color: var(--color-secondary);
  font-size: 1.04rem;
}
.cookie-modal h2 {
  color: var(--color-fun1);
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 15px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 1.02rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #eee;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background .18s;
  box-shadow: 0 1px 3px rgb(32 80 133 / 8%);
}
.cookie-toggle:checked {
  background: var(--color-fun1);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left .19s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 2px rgba(32,80,133,.11);
}
.cookie-toggle:checked:before{
  left: 18px;
}

.cookie-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-fun2);
  cursor: pointer;
  z-index: 11;
}
.cookie-modal .close-btn:hover {
  color: var(--color-fun1);
}

/*--------------------------------------------------
  RESPONSIVE - MOBILE FIRST
--------------------------------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  section {
    padding: 32px 7px;
    margin-bottom: 38px;
  }
  .features-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    min-height: 62px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 18px 9px 22px 9px;
  }
  section, .card {
    padding: 22px 4px 22px 4px;
  }
  .features-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div {
    min-width: unset;
    max-width: 98vw;
    width: 100%;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .btn-primary { font-size: 1rem; padding: 8px 13px; }
  .footer-flex img { max-width: 44px; }
  .quick-facts { padding: 10px 8px; font-size: 0.96rem; }
  .cookie-modal { padding:20px 9px; }
}

/*--------------------------------------------------
  MICRO INTERACTIONS & ANIMATION EFFECTS
--------------------------------------------------*/
.btn-primary, .cookie-banner button, .cookie-modal button {
  transition: background .18s, color .16s, box-shadow .14s, transform .14s;
}
.btn-primary:active, .cookie-banner button:active {
  transform: scale(0.97);
}
.features-grid > div, .card {
  transition: box-shadow .17s, transform .14s;
}
.features-grid > div {
  cursor: pointer;
  will-change: transform;
}

/* Fun bounce for playful style */
@keyframes fun-bounce {
  0% { transform: scale(1); }
  25% { transform: scale(1.06) rotate(-2deg); }
  50% { transform: scale(1.04) rotate(2deg); }
  100% { transform: scale(1); }
}
.features-grid > div:hover {
  animation: fun-bounce 0.44s cubic-bezier(.37,.91,.25,1.15) 1;
}

/*--------------------------------------------------
  PLAYFUL VISUALS & ACCENTS
--------------------------------------------------*/
section:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 18px;
  width: 44px;
  height: 9px;
  border-radius: 8px 8px 26px 26px;
  background: var(--color-fun2);
  opacity: .18;
  z-index: 0;
}
section:after {
  content: '';
  position: absolute;
  right: 14px;
  bottom: -15px;
  width: 60px;
  height: 13px;
  background: var(--color-fun1);
  border-radius: 30px 10px 18px 12px;
  opacity: .095;
  z-index: 0;
}
section h2, section h1 {
  position: relative;
  z-index: 2;
}
.features-grid > div {
  border: 2.5px dashed var(--color-fun2);
  background: linear-gradient(135deg, var(--color-accent) 80%, #FFF4EA 100%);
}
.btn-primary {
  box-shadow: 0 3px 18px 0 rgba(254,139,55,0.16), 0 2px 5px 0 rgba(32,80,133,0.08);
  text-shadow: 0 2px 6px rgba(254,139,55,0.08);
}

/* Fancy focus effect for links */
a:focus {
  outline: 2px solid var(--color-fun1);
  outline-offset: 1px;
}

/*--------------------------------------------------
  UTILITIES
--------------------------------------------------*/
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }

/*--------------------------------------------------
  PRINT STYLES (for privacy, terms)
--------------------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section { box-shadow: none !important; background: #fff !important; }
}
