/* --- CSS RESET and NORMALIZE --- */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.55;
  background: #F5F7FA;
  color: #1C2541;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #1976D2;
  text-decoration: none;
  transition: color .2s cubic-bezier(.87,.02,.52,1.15);
}
a:hover, a:focus {
  color: #F05F40;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
}
strong {
  font-weight: bold;
  color: #123B5E;
}

/* --- BRAND FONT SETUP --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #123B5E;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.125;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.625rem;
  line-height: 1.22;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}

p, ul, ol, li, small, .text-section, .text-image-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #263859;
}
small {
  font-size: 14px;
  color: #53A6D8;
  opacity: 0.75;
}

/* --- CONTAINERS & WRAPPERS --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 36px 0 rgba(18,59,94,0.07);
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
}

/* --- HEADER & NAV --- */
header {
  background: #123B5E;
  width: 100%;
  box-shadow: 0 3px 24px 0 rgba(20,55,100,0.07);
  position: relative;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 0;
  font-size: 16px;
  transition: color .18s cubic-bezier(.87,.02,.52,1.15);
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #53A6D8;
  border-bottom: 2px solid #53A6D8;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #53A6D8 0%, #32e2aa 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  padding: 13px 38px;
  border-radius: 32px;
  box-shadow: 0 4px 18px 0 rgba(83,166,216,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(.87,.02,.52,1.15), transform .18s;
  margin-left: 24px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #1976D2 0%, #F05F40 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(240,95,64,0.14);
}

header img {
  height: 48px;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    gap: 8px;
  }
  .cta-btn {
    margin-left: 8px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  position: fixed;
  right: 16px;
  top: 20px;
  z-index: 1051;
  height: 48px;
  width: 48px;
  background: #32e2aa;
  color: #123B5E;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px 0 rgba(83,166,216,0.13);
  cursor: pointer;
  transition: background .17s, transform .14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F05F40;
  color: #fff;
  outline: none;
}
@media (min-width: 861px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #123B5E;
  color: #fff;
  z-index: 1052;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.24s cubic-bezier(.76,.17,.41,0.97), transform 0.36s cubic-bezier(.76,.17,.41,0.97);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  cursor: pointer;
  transition: color .19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F05F40;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 64px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 10px 0;
  transition: color .18s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #32e2aa;
  border-bottom: 2px solid #32e2aa;
}
@media (min-width: 861px) {
  .mobile-menu {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  background: linear-gradient(91deg, #53A6D8 73%, #F05F40 100%);
  padding: 60px 0 48px 0;
  margin-bottom: 60px;
  border-radius: 0 0 60px 0;
  box-shadow: 0 9px 32px 0 rgba(83,166,216,0.20);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero h1, .hero p {
  color: #fff;
  margin-bottom: 0;
}
.hero .cta-btn {
  margin-left: 0;
  background: linear-gradient(90deg, #32e2aa 0%, #F05F40 100%);
}
.hero .cta-btn:hover {
  background: linear-gradient(90deg, #fff 0%, #F05F40 100%);
  color: #123B5E;
  border: 2px solid #53A6D8;
}

/* --- FEATURES LIST --- */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 8px;
}
.features-list li {
  background: #e6f6fd;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(83,166,216,0.11);
  padding: 22px 26px 18px 18px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
  font-size: 17px;
  color: #123B5E;
  margin-bottom: 20px;
}
.features-list img {
  margin-bottom: 7px;
  height: 38px;
}
.features-list span {
  color: #53A6D8;
  font-size: 15px;
  margin-top: 3px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .features-list {
    flex-direction: column;
    gap: 18px;
  }
  .features-list li {
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* --- CARDS & TEASERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(83,166,216,0.10);
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* --- TESTIMONIALS --- */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 14px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 22px 0 rgba(30,65,178,0.13);
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 330px;
  color: #18334b;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .21s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px 0 rgba(18,59,94,0.21);
  transform: translateY(-4px) scale(1.025);
}
.testimonial-card p {
  font-size: 18px;
  color: #1976D2;
  margin-bottom: 0px;
}
.testimonial-data {
  font-size: 15px;
  color: #53A6D8;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span:last-child {
  color: #F05F40;
  font-size: 21px;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  .testimonials-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* --- BLOG TEASERS --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.blog-teaser {
  flex: 1 1 260px;
  background: #e9f2fa;
  border-radius: 16px;
  padding: 22px 24px 16px 22px;
  box-shadow: 0 3px 10px 0 rgba(83,166,216,0.08);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  min-width: 220px;
  color: #123B5E;
  transition: box-shadow .16s, transform .19s;
  position: relative;
}
.blog-teaser:hover {
  box-shadow: 0 13px 30px 0 rgba(83,166,216,0.16);
  transform: scale(1.025);
}
.blog-teaser h3 {
  font-size: 1.18rem;
  color: #F05F40;
  margin-bottom: 7px;
}
.blog-teaser p {
  color: #263859;
  margin-bottom: 7px;
  font-size: 15.5px;
}
.blog-teaser a {
  color: #32e2aa;
  font-weight: 700;
  font-size: 15px;
  transition: color .17s, text-decoration .18s;
}
.blog-teaser a:hover {
  color: #1976D2;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blog-list {
    flex-direction: column;
    gap: 14px;
  }
  .blog-teaser {
    min-width: 0;
  }
}

/* --- FAQ LIST --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(83,166,216,0.11);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.faq-item h3 {
  color: #1976D2;
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.faq-item .text-section {
  color: #263859;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #123B5E;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 22px 12px 22px 22px;
  gap: 18px;
  justify-content: center;
  z-index: 1201;
  box-shadow: 0 -7px 28px 0 rgba(18,59,94,0.13);
  border-radius: 20px 20px 0 0;
  opacity: 1;
  animation: slideUpBanner 0.8s cubic-bezier(.71,-0.01,.47,1.02);
  font-family: 'Roboto',Arial,sans-serif;
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 16.5px;
  flex: 2 1 270px;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-btn {
  background: #32e2aa;
  color: #123B5E;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  margin-left: 6px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform .13s;
  box-shadow: 0 2px 12px 0 rgba(83,166,216,0.12);
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #F05F40;
  color: #fff;
  transform: scale(1.05);
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: #32e2aa;
  border: 2px solid #32e2aa;
  margin-left: 6px;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #32e2aa;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 8px;
  }
  .cookie-consent-banner .cookie-btn,
  .cookie-consent-banner .cookie-settings-btn {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(18,59,94,0.26);
  z-index: 1302;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: appearModal 0.33s cubic-bezier(.65,.13,.47,1.18);
}
@keyframes appearModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #123B5E;
  border-radius: 28px;
  box-shadow: 0 8px 44px rgba(18,59,94,0.16);
  min-width: 320px;
  max-width: 95vw;
  padding: 36px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalSlideDown .38s cubic-bezier(.61,.01,.29,1.22);
}
@keyframes modalSlideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #1976D2;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-category {
  margin-bottom: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e9f2fa;
  display: flex;
  gap: 19px;
  align-items: center;
  font-size: 16px;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  border: none;
  background: #e2eef7;
  position: relative;
  cursor: pointer;
  transition: background .19s;
}
.cookie-toggle[aria-checked='true'] {
  background: #32e2aa;
}
.cookie-toggle .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(18,59,94,0.15);
  transition: left .23s cubic-bezier(.77,.09,.54,1), background .18s;
}
.cookie-toggle[aria-checked='true'] .knob {
  left: 20px;
}
.cookie-modal .cookie-btn {
  background: #32e2aa;
  color: #fff;
  margin-top: 10px;
}
.cookie-modal .cookie-btn:hover {
  background: #F05F40;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #53A6D8;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover {
  color: #F05F40;
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 8px 16px 8px;
  }
}

/* --- TEXT-IMAGE & FEATURE ITEMS --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* --- FOOTER --- */
footer {
  background: #123B5E;
  color: #fff;
  padding: 36px 0 24px 0;
  box-shadow: 0 -7px 30px rgba(18,59,94,0.09);
  border-radius: 38px 38px 0 0;
}
footer .container {
  gap: 26px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
footer img {
  height: 34px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #53A6D8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.footer-nav a:hover { color: #32e2aa; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  margin-top: 4px;
}
.contact-info img {
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- LIST SPACING & GENERAL ELEMENTS --- */
ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.54;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 24px 6px;
    margin-bottom: 34px;
  }
}

.text-section {
  font-size: 16px;
  color: #263859;
  margin-bottom: 12px;
}

/* --- FORM/ELEMENT EXTRAS --- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #53A6D8;
  outline-offset: 2px;
}

/* --- UTILITIES --- */
.hide-on-mobile { display: block; }
@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
}

/* --- MICRO-INTERACTIONS / TRANSITIONS --- */
.card, .card-container, .testimonial-card, .blog-teaser,
.cta-btn, .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, .cookie-btn, .footer-nav a,
.main-nav a, .mobile-nav a {
  transition: box-shadow .19s, transform .16s, color .15s, background .19s;
}

/* --- COLORS FOR ENERGETIC VIBE (ACCENTS) --- */
:root {
  --gr-primary: #123B5E;
  --gr-secondary: #53A6D8;
  --gr-accent: #F05F40;
  --gr-accent2: #32e2aa;
  --gr-light-bg: #F5F7FA;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 650px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .hero {
    border-radius: 0 0 20px 0;
    padding: 40px 0 32px 0;
  }
}

/* --- REMOVE OVERLAPPING, ENSURE SPACING & FLEX --- */
/* Already handled with gap, margin-bottom, padding in all flex containers, section, card, features etc. */
