/* =======================
   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, figcaption, figure, footer, header, hgroup, main, 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F8F6F3;
  color: #253A47;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #13BBAF; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #253A47; text-decoration: underline; }

/* Typography */
h1, .h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.14; }
h2, .h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.3px; }
h3, .h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
h4, .h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.15rem; font-weight: 500; }
h1,h2,h3,h4,h5,h6 { color: #253A47; }
.subheadline { font-size: 1.15rem; color: #13BBAF; margin-bottom: 24px; font-family: 'Roboto', Arial, sans-serif; font-weight: 500; }

p, ul, ol, li, small { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; color: #253A47; }
ul, ol { margin-left: 1.3em; margin-bottom: 16px; }
li { margin-bottom: 8px; }
strong, b { font-weight: 700; }
small { font-size: 13px; color: #637074; }

/* =======================
   COMMON LAYOUT CONTAINERS
   ======================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* SPACING AND SECTION LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 24px 0 rgba(37,58,71,0.06);
}

/* =======================
   HEADER STYLES
   ======================= */
header {
  background: linear-gradient(90deg, #13BBAF 0%, #253A47 100%);
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 16px 0 rgba(19, 187, 175, 0.08);
  width: 100%;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.main-nav .button-primary {
  background: #fff;
  color: #13BBAF !important;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 9px 28px;
  border-radius: 18px;
  margin-left: 16px;
  border: none;
  transition: all 0.18s;
}
.main-nav .button-primary:hover {
  background: #13BBAF;
  color: #fff !important;
  box-shadow: 0 3px 28px rgba(19,187,175,0.18);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  display: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 30;
}

@media (max-width: 980px) {
  .main-nav {display: none;}
  .mobile-menu-toggle {display: block;}
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: #253A47;
  color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.66,.04,.34,1.01);
  will-change: transform;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 18px 24px 8px 18px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 32px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 10px 0;
  border-radius: 7px;
  width: 100%;
  transition: background 0.14s,color 0.14s;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #13BBAF;
  color: #fff;
  outline: none;
}

/* Hero Sections */
.hero, .thankyou-hero {
  width: 100%;
  min-height: 330px;
  background: linear-gradient(120deg, #13BBAF 0%, #F8F6F3 100%);
  display: flex;
  align-items: center;
  padding: 60px 0 36px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 5px 30px 0 rgba(19,187,175,0.09);
  margin-bottom: 48px;
}
.hero .container, .thankyou-hero .container {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0;
}

.hero h1, .thankyou-hero h1 { color: #253A47; }
.hero .subheadline, .thankyou-hero .subheadline { color: #ddd; }

@media (max-width: 600px) {
  .hero, .thankyou-hero { padding: 38px 0 18px 0; min-height: 200px; }
  .hero h1, .thankyou-hero h1 { font-size: 1.5rem; }
}

/* FEATURES SECTION */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(19,187,175,0.06);
  padding: 32px 24px 27px 24px;
  min-width: 230px;
  flex: 1 1 240px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s,transform 0.18s;
}
.feature-item:hover { box-shadow: 0 6px 32px 0 rgba(19,187,175,0.18); transform: translateY(-5px) scale(1.02); }
.feature-item img { height: 45px; width: 45px; object-fit: contain; margin-bottom: 5px; }
.feature-item h3 { color: #13BBAF; margin-bottom: 2px; font-size: 1.17rem; }
.feature-item p { color: #253A47; }

/* About, Team & USP lists */
.brand-values ul, .usp-list, .about ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.brand-values ul li, .usp-list li, .about ul li {
  font-size: 1.07rem;
  padding-left: 24px;
  position: relative;
  color: #13BBAF;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brand-values ul li:before, .usp-list li:before, .about ul li:before {
  content: '\2713';
  position: absolute;
  left: 0; color: #253A47;
  font-weight: bold;
}
.usp-list li img { height: 21px; width: 21px; margin-right: 8px; vertical-align: middle; display: inline-block; transform: translateY(3px); }
.usp-list li {
  padding-left: 0;
  color: #253A47;
  font-family: 'Roboto', Arial, sans-serif;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FAFBFB;
  color: #253A47;
  border-radius: 18px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 12px 0 rgba(19, 187, 175, 0.13);
  font-size: 1.05rem;
  border-left: 5px solid #13BBAF;
  transition: box-shadow 0.17s;
}
.testimonial-card strong {
  color: #253A47;
  font-size: 1.01rem;
  font-weight: 600;
  margin-top: 3px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 rgba(19, 187, 175, 0.20);
}

/* CTA and BUTTONS */
.button-primary {
  appearance: none;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #13BBAF 0%, #253A47 100%);
  color: #fff !important;
  padding: 12px 38px;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 2px 16px 0 rgba(19,187,175,0.16);
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: #13BBAF;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 7px 40px 0 rgba(19,187,175,0.22);
}
.button-secondary {
  display: inline-block;
  appearance: none;
  border: 2px solid #13BBAF;
  background: #fff;
  color: #13BBAF;
  border-radius: 20px;
  padding: 10px 30px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .3px;
  transition: border 0.18s, background 0.18s, color 0.18s;
  margin-top: 10px;
  outline: none;
  cursor: pointer;
}
.button-secondary:hover, .button-secondary:focus {
  background: #13BBAF;
  color: #fff;
  border: 2px solid #13BBAF;
}

.cta {
  margin-top: 32px;
  margin-bottom: 60px;
  text-align: center;
  padding: 36px 0 24px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 3px 20px 0 rgba(19,187,175,0.12);
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
}

.motivational-cta {
  width: 100%;
  padding: 55px 0 45px 0;
  background: linear-gradient(92deg, #13BBAF 20%, #F8F6F3 100%);
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 3px 20px 0 rgba(19,187,175,0.10);
}
.motivational-cta h2 { color: #253A47; }

/* SERVICES, CARDS, TOOLS */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-item {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(19,187,175,0.08);
  padding: 26px 22px 18px 22px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s,transform 0.16s;
}
.service-item:hover { box-shadow: 0 5px 30px 0 rgba(19,187,175,0.16); transform: translateY(-3px) scale(1.02); }
.service-item h3 { color: #253A47; font-size: 1.08rem; margin-bottom: 7px; }
.service-item p { font-size: 1rem; color: #637074; }

.program-benefits ul, .plan-overview ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.program-benefits ul li, .plan-overview ul li {
  font-size: 1.08rem;
  color: #13BBAF;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  padding-left: 24px;
}
.program-benefits ul li:before, .plan-overview ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #13BBAF;
  font-weight: bold;
}

.tool-overview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.tool-overview ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.tool-overview ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #253A47;
  margin-bottom: 4px;
}
.tool-overview ul img {
  height: 20px; width: 20px;
  object-fit: contain;
}

.downloadable-guides {margin-top: 2px;}

/* LEGAL CONTENT */
.legal {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(19,187,175,0.09);
  padding: 40px 20px;
}
.legal h1, .legal h2, .legal h3 { color: #253A47; margin-top: 20px; }
.legal h1 { font-size: 2rem; margin-bottom: 20px; }
.legal h2 { font-size: 1.3rem; }
.legal ul { margin-bottom: 14px; }

/* CONTACT PAGE */
.contact-info p, .opening-hours p { display: flex; align-items: center; gap: 10px; }
.contact-info img, .opening-hours img { height: 20px; width: 20px; }

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(90deg, #253A47 0%, #13BBAF 100%);
  color: #fff;
  padding: 0 0 20px 0;
  margin-top: 56px;
}
.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0 7px 0;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-contact p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img { height: 18px; width: 18px; }
.footer-contact a {
  color: #13BBAF;
  text-decoration: underline;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
}
.footer-navigation a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.91;
  transition: color 0.15s, opacity 0.14s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #13BBAF;
  opacity: 1;
}

/* =======================
   COOKIE CONSENT BANNER & MODAL
   ======================= */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  padding: 24px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 28px 0 rgba(37, 58, 71,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; }
.cookie-banner-text {
  flex: 1 1 auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #253A47;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner .button-primary {padding: 9px 16px;font-size: 1rem;}
.cookie-banner .button-secondary {padding: 9px 16px;font-size: 1rem;}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(37, 58, 71, 0.53);
  z-index: 121;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fff;
  color: #253A47;
  max-width: 425px;
  width: 95%;
  border-radius: 18px;
  box-shadow: 0 3px 28px 0 rgba(37, 58, 71,0.18);
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadein 0.21s;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  color: #13BBAF;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 14px;
  background: #13BBAF;
  position: relative;
  display: inline-block;
  margin-left: 4px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0; position: absolute;
}
.cookie-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 10px 0 rgba(19,187,175,0.05);
  transition: transform 0.16s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-slider { display: block; width: 100%; height: 100%; cursor: pointer; }
.cookie-category .always-on {
  color: #13BBAF;
  font-size: 0.99rem;
  font-weight: 600;
  margin-left: 6px;
  letter-spacing: .2px;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .button-secondary, .cookie-modal .button-primary { font-size: 1rem; padding: 9px 18px; }
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 18px;
  font-size: 1.6rem;
  color: #13BBAF;
  background: none;
  border: none;
  cursor: pointer;
}

/* =======================
   SPACING & FLEX LAYOUTS
   ======================= */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(19,187,175,0.08);
  padding: 24px 18px;
  min-width: 200px;
  flex: 1 1 280px;
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 6px 32px 0 rgba(19,187,175,0.12); }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: left;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section { padding: 24px 10px; margin-bottom: 36px;}
  .hero, .thankyou-hero { border-radius: 0 0 18px 18px; margin-bottom: 30px; }
  .footer-content { flex-direction: column; gap: 18px; align-items: flex-start; }
  .card-container, .features .feature-grid, .services .service-list { gap: 14px; }
  .content-grid { gap: 10px; }
  .cta { border-radius: 17px; padding: 18px 0 13px 0; }
}
@media (max-width: 800px) {
  .features .feature-grid, .services .service-list { flex-direction: column; }
  .card-container, .content-grid { flex-direction: column; }
  .footer-content { flex-direction: column; }
}
@media (max-width: 660px) {
  .container { padding-left: 7px; padding-right: 7px; }
}
@media (max-width: 500px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 19px 13px; gap: 12px; left: 8px; right: 8px;}
  .cookie-modal { padding: 24px 7px 18px 14px; }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {flex-direction: column;}
}

/* QUOTES AND MOTIVATION */
.quote, .motivational-text {
  background: #F8F6F3;
  color: #253A47;
  font-style: italic;
  font-size: 1.08rem;
  border-left: 4px solid #13BBAF;
  padding: 15px 22px 15px 22px;
  margin: 15px 0;
  border-radius: 10px;
}

/* UTILITIES */
.mt-10 { margin-top: 10px; }
.mt-22 { margin-top: 22px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-60 { margin-bottom: 60px; }

/* =======================
   CUSTOM SCROLLBAR
   ======================= */
::-webkit-scrollbar {
  width: 9px;
  background: #F8F6F3;
}
::-webkit-scrollbar-thumb {
  background: #13BBAF;
  border-radius: 8px;
}

/* =======================
   FOCUS/INTERACTIVE STATES
   ======================= */
a:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px solid #13BBAF;
  outline-offset: 2px;
}

/* =======================
   GOOGLE FONTS PRELOAD
   ======================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* =======================
   ANIMATION KEYFRAMES
   ======================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* =======================
   END OF STYLE.CSS
   ======================= */
