/* --- CSS 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F6F8;
  color: #1B2A4A;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: #1B2A4A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F0A83E;
  text-decoration: underline;
}
img {
  max-width: 100%;
  border-radius: 16px;
  display: block;
}
ul, ol {
  margin-bottom: 16px;
  margin-top: 8px;
  padding-left: 24px;
}
li {
  margin-bottom: 6px;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, .text-section p, .content-wrapper p {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 22px 0 rgba(240,168,62,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.04);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(240,168,62,0.13),0 2px 10px rgba(27,42,74,0.07);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(118deg, #FFEBD2 60%, #FFF7EC 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px rgba(240, 168, 62, 0.06);
  padding: 48px 0 56px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #1B2A4A;
}
.hero p {
  font-size: 1.15rem;
  color: #633E1B;
  margin-bottom: 24px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* --- NAVIGATION & HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,42,74,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-weight: 500;
  color: #1B2A4A;
  border-radius: 16px;
  padding: 6px 16px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #FFEBD2;
  color: #F0A83E;
}
.cta-btn {
  display: inline-block;
  background: #F0A83E;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 30px;
  box-shadow: 0 2px 12px rgba(240,168,62,0.13);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.12s;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1B2A4A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(27,42,74,0.10);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  background: none;
  color: #F0A83E;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 8px;
  padding: 8px 14px;
  border-radius: 14px;
  transition: background 0.13s;
  display: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFEBD2;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,42,74,0.97);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.5,1,0.7,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  margin: 20px 26px 0 0;
  align-self: flex-end;
  z-index: 150;
  border-radius: 14px;
  padding: 4px 10px;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F0A83E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
  padding-left: 42px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding: 12px 0;
  border-radius: 17px;
  width: 100%;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #F0A83E;
  color: #fff;
}

/* --- FOOTER --- */
footer {
  background: #1B2A4A;
  color: #fff;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 20px rgba(240,168,62,0.11);
  margin-top: 44px;
  padding-top: 36px;
  padding-bottom: 28px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #F5F6F8;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  padding: 4px 10px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover {
  background: #F0A83E;
  color: #1B2A4A;
}
.footer-contact p {
  font-size: 0.97rem;
  margin-bottom: 6px;
  color: #FFEBD2;
}

/* --- FEATURE, SERVICE, COURSE, WORKSHOP LISTS --- */
.feature-grid,
.service-list,
.course-grid,
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div,
.service-list > div,
.course-grid > div,
.workshop-list > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(27,42,74,0.05);
  padding: 28px 20px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-grid > div:hover,
.service-list > div:hover,
.course-grid > div:hover,
.workshop-list > div:hover {
  box-shadow: 0 8px 26px rgba(240,168,62,0.09);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: #FFEBD2;
  padding: 4px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF7EC;
  box-shadow: 0 2px 16px rgba(27,42,74, 0.07);
  border-radius: 20px;
  flex-wrap: wrap;
}
.testimonial-card p {
  color: #1B2A4A;
  font-size: 1.07rem;
  font-style: italic;
  flex: 1 1 240px;
  margin: 0 0 0 0;
}
.testimonial-card strong {
  color: #F0A83E;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
}
.testimonial-card span {
  color: #F0A83E;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* --- MISC & UTILITIES --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.trust-factors {
  margin-top: 22px;
  background: #FFEBD2;
  color: #1B2A4A;
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
}
.service-comparison {
  margin-top: 26px;
  background: #FFFBF6;
  border-radius: 17px;
  box-shadow: 0 2px 9px rgba(27,42,74,0.03);
  padding: 18px 16px;
  font-size: 1rem;
}
.contact-info {
  background: #FFF7EC;
  border-radius: 14px;
  padding: 16px 14px;
  color: #1B2A4A;
  font-size: 1rem;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(27,42,74,0.03);
}
.legal {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 14px rgba(240,168,62,0.10);
  padding: 32px 18px;
  margin-bottom: 48px;
}
.section:last-child, .legal:last-child { margin-bottom: 0; }

/* --- FORMS (if applicable in future) --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #F0A83E;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
  width: 100%;
  margin-top: 6px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1B2A4A;
  box-shadow: 0 2px 8px #F0A83E22;
}
button, .btn {
  cursor: pointer;
}

/* --- HOVER ANIMATIONS --- */
.card, .feature-grid > div, .service-list > div, .course-grid > div, .workshop-list > div {
  transition: box-shadow 0.18s, transform 0.12s;
}
a, button, .cta-btn {
  transition: color 0.16s, background 0.16s, box-shadow 0.17s, transform 0.13s;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -4px 22px rgba(27,42,74,0.15);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 12px 22px 26px;
  border-radius: 22px 22px 0 0;
  z-index: 180;
  font-size: 1.02rem;
  max-width: 680px;
  margin: 0 auto;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s, transform 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(42px);
}
.cookie-banner-message {
  flex: 1 1 360px;
  color: #1B2A4A;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 1.02rem;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 2px 7px rgba(240,168,62,0.10);
  transition: background 0.14s, color 0.12s;
}
.cookie-btn.accept {
  background: #F0A83E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #1B2A4A; color: #fff; }
.cookie-btn.reject {
  background: #fff; color: #1B2A4A;
  border: 1.5px solid #F0A83E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #FFEBD2; color: #F0A83E; }
.cookie-btn.settings {
  background: #1B2A4A; color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #F0A83E; color: #fff; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,42,74, 0.80);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 30px 28px;
  max-width: 400px;
  width: 94vw;
  box-shadow: 0 6px 30px rgba(27,42,74,0.18);
  color: #1B2A4A;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 2rem;
  color: #F0A83E;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 3px 10px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFEBD2;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B2A4A;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F0A83E;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #F0A83E;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-actions .cookie-btn {
  flex: 1 1 0px;
}

/* --- RESPONSIVE (MOBILE-FIRST) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 9px; padding-right: 9px;
  }
}
@media (max-width: 900px) {
  .footer-brand,
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero { padding: 30px 0 34px 0; border-radius: 0 0 18px 18px; }
  .section, .legal { padding: 24px 9px; border-radius: 14px; }
  .content-grid, .card-container, .feature-grid, .service-list, .course-grid, .workshop-list {
    gap: 16px;
  }
  .feature-grid > div,
  .service-list > div,
  .course-grid > div,
  .workshop-list > div {
    min-width: 140px;
    padding: 16px 7px;
  }
  header .container {
    gap: 10px;
    flex-wrap: wrap;
  }
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero .container,
  .content-wrapper {
    padding-left: 0; padding-right: 0;
    align-items: flex-start;
  }
  .footer-contact p { font-size: 0.94rem; }
}
@media (max-width: 600px) {
  .footer-brand img {
    width: 38px !important;
    height: 38px !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 8px 14px 10px;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  h1, h2 { font-size: 1.17rem; }
  .hero { padding: 17px 0 22px 0; }
}

/* --- FLEXBOX DIRECTION CHANGES FOR MOBILE --- */
@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .feature-grid,
  .service-list,
  .course-grid,
  .workshop-list,
  .card-container,
  .content-grid,
  .footer-brand,
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* --- SCROLLBAR STYLES FOR FRIENDLINESS --- */
::-webkit-scrollbar { width: 10px; background: #FFF7EC; border-radius: 99px; }
::-webkit-scrollbar-thumb { background: #F0A83E; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #f7c56c; }

/* --- CUSTOM --- */
::-moz-selection { background: #FFEBD2; color: #1B2A4A; }
::selection { background: #FFEBD2; color: #1B2A4A; }

/* --- END --- */
