/* Reset & 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f7f5e9;
  color: #17476f;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #17476f;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #33b485;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #17476f;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lead {
  font-size: 1.25rem;
  color: #17476f;
  margin-bottom: 28px;
  max-width: 650px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}
.text-section {
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
}

/* Container & Layout */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(23,71,111,0.07), 0 1.5px 6px rgba(23,71,111,0.06);
}

/* Hero Sections */
.hero {
  background: #17476f;
  color: #fff;
  padding: 56px 0 40px 0;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
}
.hero h1, .hero h2, .hero h3, .hero p, .hero .lead {
  color: #fff;
}
.hero .lead {
  color: #f7f5e9;
  font-weight: 500;
}

/* Navigation */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(23,71,111,0.07);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  text-transform: uppercase;
}
.main-nav a.cta {
  background: #33b485;
  color: #fff;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(51,180,133,0.10);
  transition: background 0.16s, color 0.18s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #17476f;
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: #33b48518;
}

/* Burger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #33b485;
  color: #fff;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 8px 16px;
  position: fixed;
  top: 18px;
  right: 20px;
  border-radius: 12px;
  z-index: 105;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #17476f;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #17476ff0;
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0.98;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin: 26px 0 24px 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #33b485;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #f7f5e920;
  width: 100%;
  font-weight: 600;
  transition: color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #33b485;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  header .container {
    padding: 0 14px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: .98rem;
    padding: 7px 10px;
  }
  header .container {
    height: 65px;
  }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 800px) {
  header .container {
    flex-direction: row;
    height: 64px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .container { padding: 0 12px; }
  .hero {
    padding: 38px 0 26px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 38px;
    border-radius: 13px;
  }
}

/* Flex Layout Patterns */
.feature-grid, .value-grid, .card-container, .service-cards, .content-grid, .feature-list, .service-highlights, .client-stories, .benefit-points ul, .session-examples ul, .faq-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.value-grid, .feature-grid {
  gap: 32px;
}
.card-container, .service-cards {
  justify-content: flex-start;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .value-grid, .card-container, .service-cards, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* Cards & Features */
.feature, .value-item, .service-card, .testimonial-card {
  background: #f7f5e9;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(51,180,133,0.06);
  padding: 28px 24px;
  flex: 1 1 250px;
  min-width: 235px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature:hover, .value-item:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(23,71,111,0.13);
  transform: translateY(-3px) scale(1.016);
}
.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}

.service-card h3, .value-item h3 {
  color: #17476f;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.service-card a {
  margin-top: 8px;
  background: none;
  color: #33b485;
  font-weight: 600;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: .98rem;
  transition: color 0.17s;
}
.service-card a:hover, .service-card a:focus {
  color: #17476f;
  text-decoration: underline;
}

/* Testimonial cards */
.testimonial-card {
  background: #fff;
  color: #17476f;
  border: 2px solid #33b48534;
  box-shadow: 0 2px 8px rgba(23,71,111,0.07);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 28px;
  gap: 10px;
  border-radius: 15px;
}
.testimonial-card p {
  margin-bottom: 4px;
  font-size: 1.07rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #33b485;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

/* CTA Banner/Buttons */
.cta-banner {
  background: #33b485;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(51,180,133,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 20px 28px 20px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 12px;
}
.cta {
  display: inline-block;
  background: #33b485;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  letter-spacing: 0.04em;
  margin-top: 6px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(51,180,133,0.12);
  transition: background 0.16s, color 0.15s, transform 0.11s;
}
.cta:focus,
.cta:hover {
  background: #17476f;
  color: #fff;
  transform: scale(1.03);
}
.cta.secondary {
  background: #fff;
  color: #17476f;
  border: 2px solid #33b485;
  box-shadow: 0 1px 6px rgba(51,180,133,0.08);
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #33b485;
  color: #fff;
}

.cta-inline {
  margin: 18px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Feature/Benefit Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.benefit-points ul, .session-examples ul, .faq-list ul {
  gap: 10px;
}

/* Contact Info */
.contact-info ul {
  list-style-type: none;
  padding-left: 0;
}
.contact-info li {
  margin-bottom: 10px;
  font-size: 1rem;
}
@media (max-width:600px) {
  .cta-banner { padding: 22px 5px 16px 5px; }
}

/* Footer */
footer {
  background: #17476f;
  color: #fff;
  padding: 34px 0 0 0;
  border-top: 4px solid #33b485;
}
.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding-bottom: 8px;
}
.footer-content > div {
  flex: 1 1 230px;
}
.footer-main, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.footer-main a, .footer-legal a {
  color: #f7f5e9;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .98rem;
  transition: color 0.17s;
  font-weight: 500;
}
.footer-main a:hover,
.footer-legal a:hover {
  color: #33b485;
}
footer img {
  height: 36px;
  margin-bottom: 11px;
}
footer a {
  text-decoration: none;
}
footer p {
  color: #f7f5e9;
  opacity: 0.88;
  margin-bottom: 8px;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1150;
  background: #fff;
  border-top: 3px solid #33b485;
  box-shadow: 0 -2px 18px rgba(23,71,111,0.13);
  padding: 18px 14px 20px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: transform 0.25s cubic-bezier(.4,1.2,.51,0.96), opacity 0.18s;
}
.cookie-banner.closed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
  color: #17476f;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex: 1 1 auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .98rem;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 10px 21px;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .accept {
  background: #33b485;
  color: #fff;
  box-shadow: 0 1px 6px #33b4851c;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #17476f;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #17476f;
  border: 2px solid #33b485;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #33b485;
  color: #fff;
}
.cookie-banner .settings {
  background: #17476f;
  color: #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #33b485;
  color: #fff;
}
@media (max-width:620px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 16px 7px 16px 7px;
    font-size: .95rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-buttons{
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: #17476faa;
  z-index: 1151;
  opacity: 1;
  transition: opacity 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #17476f;
  border-radius: 18px;
  max-width: 410px;
  width: 94vw;
  padding: 32px 22px 24px 22px;
  box-shadow: 0 4px 36px #17476f27;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1152;
  animation: cookieModalPop 0.41s cubic-bezier(.5,1.9,.36,.85);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  background: none;
  color: #33b485;
  border: none;
  font-size: 2.3rem;
  position: absolute;
  right: 16px;
  top: 10px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .modal-close:hover { color: #17476f; }
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category-name {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 20px;
  background: #eee;
  margin-left: 8px;
  position: relative;
  flex-shrink: 0;
  border: 2px solid #33b485;
  cursor: pointer;
  transition: background 0.11s;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle .cookie-knob {
  position: absolute;
  left: 1px; top: 1px;
  background: #33b485;
  width: 16px; height: 16px;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-toggle.on {
  background: #33b48533;
}
.cookie-toggle.on .cookie-knob {
  left: 15px;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.55;
  cursor: not-allowed;
  background: #eee;
  border: 2px solid #bbb;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 18px;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .97rem;
  border: none;
  background: #17476f;
  color: #fff;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: #fff;
  color: #17476f;
  border: 2px solid #33b485;
}
.cookie-modal .cookie-modal-actions button.secondary:hover {
  background: #33b485;
  color: #fff;
}
.cookie-modal .cookie-modal-actions button:hover{
  background: #33b485;
}

/* List styles */
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}
ul li::marker, ol li::marker {
  color: #33b485;
}

/* Geometric/Structured Details */
hr {
  border: none;
  border-top: 3px solid #17476f22;
  margin: 40px 0 28px 0;
}

/* Form / Inputs (if future use) */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #33b48549;
  border-radius: 12px;
  padding: 11px 15px;
  margin-bottom: 16px;
  width: 100%;
  background: #f7f5e9;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #33b485;
  outline: none;
}
button {
  font-family: inherit;
}

/* Utility Classes */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mb-4 { margin-bottom: 4px !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Scrollbar Styling for overlays & menus */
.mobile-menu::-webkit-scrollbar,
.cookie-modal-backdrop::-webkit-scrollbar {
  width: 8px;
}
.mobile-menu::-webkit-scrollbar-thumb,
.cookie-modal-backdrop::-webkit-scrollbar-thumb {
  background: #33b48533;
  border-radius: 6px;
}

/* Animation for interactive elements */
.cta, .cta-banner, .feature, .service-card, .testimonial-card, .value-item, .cookie-banner, .cookie-modal {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.18s, 0.18s, 0.18s, 0.14s;
}

/* Fontface (fallback if needed) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
}

/* Make sure at least 20px margin between content cards/sections */
.feature, .service-card, .value-item, .testimonial-card {
  margin-bottom: 20px;
}
.section + .section {
  margin-top: 40px;
}

/* Prevent overlapping and ensure proper z-index for overlays */
.cookie-banner, .cookie-modal, .mobile-menu {
  z-index: 1100;
}

/* Responsive heading scale */
@media (max-width:620px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .lead { font-size: 1.07rem; }
}
