/* RESET & BASE TYPOGRAPHY */
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, sans-serif;
  background: linear-gradient(120deg, #F5F5F5 40%, #D4F3EF 100%);
  color: #064663;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #064663;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover, a:focus {
  color: #00C897;
  outline: none;
}
.visually-hidden {
  display: none !important;
}
* { box-sizing: border-box; }

/* FONT SCALE */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
p, ul, ol {
  font-size: 1.0625rem;
  margin-bottom: 14px;
  color: #222;
}
ul, ol {
  padding-left: 1.35em;
  margin-bottom: 10px;
}
strong { color: #064663; font-weight: bold; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 0px 8px 0 rgba(6,70,99,0.046);
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
}
.logo-area {
  display: flex;
  align-items: center;
  height: 70px;
  padding-left: 0;
}
.logo-area a img {
  height: 46px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #064663;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.14s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #00C89710;
  color: #00C897;
}
.main-nav a.cta.primary {
  background: linear-gradient(96deg, #00C897 30%, #064663 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 12px 0 rgba(0,200,151,0.10);
  padding: 10px 26px;
  margin-left: 10px;
  transition: background 0.18s, box-shadow 0.18s, color 0.2s;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: linear-gradient(96deg, #064663 20%, #00C897 90%);
  color: #fff;
  box-shadow: 0 7px 16px 0 rgba(0,200,151,0.16);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(96deg,#064663 60%,#00C897 100%);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: auto;
  z-index: 102;
  transition: background 0.16s;
}
.mobile-menu-toggle:active { background: #064663; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(6,70,99,0.08);
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 340px;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(.69,-0.11,0,1.15);
  z-index: 120;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #064663;
  font-size: 2.2rem;
  padding: 16px 22px 6px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00C897;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 32px 24px 24px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: #064663;
  font-weight: 500;
  padding: 11px 0;
  border-radius: 4px;
  transition: background .12s;
  letter-spacing: 0.01em;
}
.mobile-nav a.cta.primary {
  background: linear-gradient(90deg, #00C897 10%, #064663 90%);
  color: #fff;
  padding: 13px 0;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:active { background: #00C89710; color: #00C897; }
.mobile-nav a.cta.primary:hover, .mobile-nav a.cta.primary:focus {
  background: linear-gradient(96deg, #064663 20%, #00C897 90%);
  color: #fff;
}

/* Hide main-nav and show hamburger on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 16px;
  }
}

/* HEADER LOGO & FLEX LAYOUT ON DESKTOP */
header > .logo-area,
header > .main-nav, 
header > .mobile-menu-toggle {
  /* stacked on mobile, inline on desktop */
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 0 20px;
  min-height: 70px;
}
@media (max-width:600px){
  header { flex-direction: column; align-items: flex-start; min-height: unset; }
  .logo-area { padding-left:0; }
}

/* HERO Section */
.hero {
  background: linear-gradient(106deg, #F5F5F5 60%, #00C8971A 100%);
  padding: 64px 0 44px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
}
.hero h1,
.hero h2 {
  color: #064663;
  margin-bottom: 0;
}
.hero .hero-subheadline {
  color: #141414;
  font-size: 1.25rem;
  font-weight: 400;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 8px;
  padding: 13px 36px;
  margin-top: 10px;
  outline: none;
  cursor: pointer;
  box-shadow: 0 3px 10px 0 rgba(6,70,99,0.08);
  transition: box-shadow 0.19s, background 0.18s, color 0.18s;
}
.cta.main {
  background: linear-gradient(96deg, #00C897 30%, #064663 100%);
  color: #fff;
}
.cta.secondary {
  background: linear-gradient(96deg, #064663 20%, #00C897 90%);
  color: #fff;
}
.cta:hover, .cta:focus {
  box-shadow: 0 7px 24px 0 rgba(0,200,151,0.14);
  color: #fff;
  background: linear-gradient(96deg, #00C897 40%, #064663 94%);
}

/* LAYOUT SECTIONS & UTILS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card { margin-bottom: 20px; position: relative; border-radius: 14px; box-shadow: 0 2px 15px 0 #0646630D; background: #fff; transition: box-shadow 0.17s; }
.card:hover { box-shadow: 0 4px 24px 0 #00C89725; }
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 14px 0 #00C8971D;
  margin-bottom: 22px;
  transition: box-shadow .15s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 #0646631B;
}
.testimonial-content p {
  font-size: 1.12rem;
  color: #181818;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-rating {
  color: #00C897;
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.testimonial-author {
  font-size: 0.96rem;
  color: #064663;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grids & Lists */
.feature-grid, .feature-list, .features-shortlist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  list-style: none;
}
.feature-grid li, .feature-list li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 #06466313;
  padding: 26px 22px;
  flex: 1 1 245px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .14s, transform .14s;
}
.feature-grid li:hover, .feature-list li:hover {
  box-shadow: 0 5px 20px 0 #00C89715;
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img, .feature-list img {
  height: 38px;
  width: auto;
  margin-bottom: 8px;
}
.features-shortlist {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.features-shortlist li {
  display: flex;
  align-items: center;
  background: #00C89713;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #064663;
  gap: 6px;
}
.features-shortlist img { height: 26px; }

@media (max-width: 900px) {
  .feature-grid, .feature-list, .card-container {
    gap: 16px;
  }
  .feature-grid li, .feature-list li, .card {
    flex-basis: 100%;
    min-width: 96%;
    max-width: 100%;
  }
}

/* Services, lists, & Special Info Blocks */
.service-list, .benefit-list, .workshop-list, .package-list, .training-modules {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefit-list li, .training-modules li {
  padding-left: 28px;
  position: relative;
  background: none;
}
.benefit-list li:before, .training-modules li:before {
  content: "\2713";
  color: #00C897;
  font-size: 1.1em;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1px;
}

/* Info Section */
.info-section, .about-section, .thank-you-section {
  background: #fff;
  border-radius: 10px;
  margin-top: 32px;
  margin-bottom: 50px;
  padding: 44px 0 40px 0;
  box-shadow: 0 2px 11px 0 #06466310;
}
.info-section .container, .about-section .container, .thank-you-section .container {
  padding: 0 16px;
}

.text-section {
  margin-bottom: 20px;
}
.text-section ul {
  margin-bottom: 14px;
}
.text-section a {
  color: #00C897;
  border-bottom: 1px dotted #00C89780;
  transition: color .13s, border .13s;
}
.text-section a:hover, .text-section a:focus {
  color: #064663;
  border-color: #064663;
}

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(98deg, #00C89710 36%, #06466314 100%);
  border-radius: 11px;
  margin-top: 28px;
  margin-bottom: 60px;
  box-shadow: 0 2px 15px 0 #0646630A;
  padding: 48px 0 46px 0;
}
.cta-block .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-block h2 {
  color: #064663;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-block a.cta {
  margin-top: 16px;
}

/* CONTACT INFO box */
.contact-info {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 #00C89711;
  margin-top: 30px;
  padding: 36px 0 24px 0;
}
.contact-info .container {
  padding: 0 20px;
}

/* Custom Lists */
ul li {
  margin-bottom: 9px;
}

/* FOOTER */
footer {
  background: linear-gradient(96deg,#F5F5F5 70%,#06466308 100%);
  padding: 0; margin-top: 60px;
  color: #064663;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  padding: 34px 20px 10px 20px;
  border-radius: 0 0 10px 10px;
  max-width: 1080px;
  margin: 0 auto;
}
.footer-content > a {
  flex-shrink: 0;
  margin-right: 24px;
}
.footer-content img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #064663;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #00C897; }
.footer-contact p {
  font-size: 0.96rem;
  color: #064663;
  margin: 0;
  line-height: 1.7;
}
.footer-bottom {
  font-size: 0.92rem;
  color: #064663C0;
  text-align: center;
  padding: 18px 0 20px 0;
  background: none;
  box-shadow: none;
}
@media (max-width:840px){
  .footer-content { flex-direction: column; align-items: flex-start; gap:12px; }
  .footer-content > a { margin-bottom: 10px; margin-right: 0; }
}

/* THANK YOU SECTION */
.thank-you-section .thank-you-message {
  background: #00C89710;
  border-radius: 7px;
  padding: 22px;
  margin-bottom: 19px;
  color: #064663;
  font-size: 1.1rem;
}
.thank-you-section .next-steps-info {
  margin-bottom: 22px;
}

/* CLIENT TESTIMONIALS */
.client-testimonials h3 {
  margin-bottom: 13px;
  color: #064663;
}
.client-testimonials .testimonial-card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 #06466310;
  margin-bottom: 22px;
}

/* MODALS & BANNERS */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid #00C89740;
  box-shadow: 0 -2px 20px 0 #06466314;
  z-index: 2100;
  padding: 20px 32px 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: transform .45s cubic-bezier(.65,0,.32,1.2);
}
.cookie-consent-banner.hidden {
  transform: translateY(130%);
}
.cookie-consent-banner p {
  margin: 0;
  font-size: 1rem;
  color: #064663;
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 7px;
  background: linear-gradient(90deg,#064663,#00C897);
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 9px 28px;
  font-weight: 600;
  transition: background .18s, color .17s;
  cursor: pointer;
  outline: none;
}
.cookie-btn.secondary {
  background: #fff;
  color: #064663;
  border: 1.5px solid #00C897;
}
.cookie-btn.secondary:hover,.cookie-btn.secondary:focus {
  background: #00C8971A;
  color: #064663;
}
.cookie-btn:hover,.cookie-btn:focus {
  background: linear-gradient(90deg,#00C897,#064663 90%);
  color:#fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #06466380;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .33s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 38px 0 #00C89723;
  padding: 34px 32px 32px 32px;
  max-width: 390px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  animation: scalein .24s cubic-bezier(.67,-0.05,.28,1.2);
}
@keyframes scalein {from{transform:scale(.89);} to{transform:scale(1);} }
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 15px;
  top: 13px;
  background: none;
  color: #064663;
  font-size: 1.6em;
  border: none;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-switches {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-switch label {
  font-size: 1.03rem;
  color: #064663;
  font-weight: 500;
}
.cookie-toggle {
  width: 44px;
  height: 21px;
  border-radius: 12px;
  background: #F5F5F5;
  border: 1.2px solid #00C89790;
  position: relative;
  display: inline-block;
  transition: background .12s, border .15s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #064663;
  transition: left .17s, background .19s;
}
.cookie-toggle input:checked + .slider {
  background: #00C897;
  left: 25px;
}

/* Responsive: Mobile First Approach */
@media (max-width: 1150px) {
  .container { max-width: 94vw; }
}
@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .feature-grid li, .feature-list li, .card {
    padding: 18px 8px;
  }
  .section, .info-section, .cta-block { padding: 26px 4px; }
  .footer-content { padding: 23px 8px 5px 8px; }
}

@media (max-width:520px) {
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; padding: 14px 6vw 14px 5vw; gap: 11px; }
  .footer-content { gap:7px; }
}

/* Micro-interactions & Smooth Transitions */
a, .cta, button, .main-nav a, .footer-nav a {
  transition: color .13s, background .17s, box-shadow .16s, border .14s;
}

/* Hide scroll on mobile-menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ACCESSIBILITY IMPROVEMENTS */
a:focus-visible, .cta:focus-visible, button:focus-visible {
  outline: 3px solid #00C897;
  outline-offset: 2px;
  border-radius: 5px;
}

::-webkit-input-placeholder { color: #06466399; opacity: 1; }
::-moz-placeholder { color: #06466399; opacity: 1; }
:-ms-input-placeholder { color: #06466399; opacity: 1; }
::placeholder { color: #06466399; opacity: 1; }

/****** UTILITIES ******/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 36px !important; }
.mt-4 { margin-top: 36px !important; }

/****** END OF CSS ******/
