/* ========================================================
   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, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  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;
  background: #F4F4F4;
  color: #264653;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #264653;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, ul, ol, dl {
  color: #264653;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.65;
}
a {
  color: #264653;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #E9C46A;
  outline: none;
}
ul, ol {
  list-style: none;
}
hr {
  border: 0;
  border-top: 1.5px solid #E9C46A;
  margin: 32px 0;
}

.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(38, 70, 83, 0.06);
}

/* ========================================================
   Header & Navigation
   ======================================================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 22px 0 20px 0;
  box-shadow: 0 2px 14px rgba(38, 70, 83, 0.04);
  position: relative;
  z-index: 30;
}
header > a img {
  height: 45px;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E9C46A;
  color: #264653;
}
.main-nav .cta-primary {
  background: #264653;
  color: #fff;
  padding: 8px 24px;
  border-radius: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(38, 70, 83, 0.08);
  margin-left: 8px;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #E9C46A;
  color: #264653;
}
.mobile-menu-toggle {
  display: none;
  background: #264653;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s;
  z-index: 40;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E9C46A;
}

/* ========================================================
   Mobile Menu Navigation
   ======================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 100%;
  width: 100vw; height: 100vh;
  background: #264653;
  color: #fff;
  z-index: 1001;
  transition: transform 0.35s cubic-bezier(0.7,0,0.2,1), left 0.0s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 36px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(-100vw);
  left: 0;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #E9C46A;
  color: #264653;
  font-size: 2.2rem;
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  cursor: pointer;
  margin-bottom: 28px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #ffffff;
  color: #264653;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 10px 0;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
  width: 94vw;
  max-width: 360px;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E9C46A;
  color: #264653;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  header > a img {
    height: 38px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header, .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================================================
   HERO & CTA SECTION STYLES
   ======================================================== */
.hero {
  background: linear-gradient(120deg, #264653 80%, #E9C46A 20%);
  color: #fff;
  border-radius: 0 0 38px 0;
  margin-bottom: 60px;
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 36px rgba(38, 70, 83, 0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero .text-section {
  max-width: 720px;
  padding: 50px 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hero p {
  color: #f6f6f6;
  margin-bottom: 28px;
  font-size: 1.2rem;
}

.cta-section {
  background: #E9C46A;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(38, 70, 83, 0.07);
}
.cta-section h2 {
  color: #264653;
  font-size: 2.25rem;
}
.cta-section p {
  color: #264653;
}
/*.text-section is used repeatedly for tight content*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ========================================================
   FLEXBOX LAYOUTS & CONTENT GRIDS
   ======================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(38,70,83, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 36px 28px 32px 28px;
  min-width: 280px;
  flex: 1 1 300px;
  transition: box-shadow 0.23s, transform 0.23s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(38,70,83, 0.13);
  transform: translateY(-5px) scale(1.02);
}
.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;
    gap: 22px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 180px;
  min-width: 185px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px 24px 22px;
  box-shadow: 0 2px 10px rgba(38,70,83, 0.06);
  margin-bottom: 4px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: #264653;
}
.feature-item:hover {
  box-shadow: 0 4px 20px rgba(32,65,83,0.12);
  transform: scale(1.025);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.offerings {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.offerings > div {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.06);
  flex: 1 1 270px;
  min-width: 230px;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .offerings {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* Course/Workshop listing layouts */
.course-listings, .workshop-calendar, .team-bios, .impact-stats, .success-story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.course-listings > .text-section,
.workshop-calendar > .text-section,
.team-bios > .text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.06);
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
}
.impact-stats > .text-section {
  background: #E9C46A;
  color: #264653;
  font-size: 1.35rem;
  border-radius: 12px;
  padding: 22px 28px;
  text-align: center;
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
/* Testimonials / Quotes */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 18px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.07);
  min-width: 210px;
  flex: 1 1 230px;
  color: #264653;
  margin-bottom: 12px;
  font-size: 1.08rem;
  transition: box-shadow 0.15s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 20px rgba(38,70,83,0.14);
  transform: scale(1.025);
}
.testimonial-meta {
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  font-weight: 700;
  margin-top: 6px;
  text-align: center;
}

blockquote.featured-quote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  background: #E9C46A;
  color: #264653;
  border-left: 6px solid #264653;
  border-radius: 10px;
  padding: 16px 24px 16px 22px;
  margin-top: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}
blockquote.featured-quote span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 2px;
}
blockquote {
  background: #fff;
  color: #264653;
  border-left: 4px solid #E9C46A;
  border-radius: 8px;
  padding: 12px 16px 12px 18px;
  margin: 12px 0 10px 0;
}

/* ========================================================
   BUTTON STYLES: CTA, Secondary, Cookie
   ======================================================== */
.cta-primary, input[type=submit] {
  display: inline-block;
  background: #264653;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 36px;
  font-size: 1.12rem;
  border-radius: 28px;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 2px 9px rgba(38,70,83,0.10);
  margin-top: 12px;
  margin-bottom: 8px;
  text-align: center;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus,
input[type=submit]:hover, input[type=submit]:focus {
  background: #E9C46A;
  color: #264653 !important;
  box-shadow: 0 4px 24px rgba(38,70,83,0.13);
}
.cta-secondary {
  display: inline-block;
  background: none;
  color: #264653;
  border: 2px solid #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 11px 33px;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
  margin-top: 8px;
  margin-bottom: 6px;
  transition: background 0.19s, color 0.19s, border-color 0.19s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E9C46A;
  color: #264653;
  border-color: #E9C46A;
}

/* ========================================================
   Footer Styles
   ======================================================== */
footer {
  background: #264653;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 50px 0 30px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #E9C46A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}
.footer-contact img {
  width: 70px;
  margin-bottom: 2px;
}
.footer-contact address {
  font-style: normal;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
.footer-contact address img {
  vertical-align: middle;
  width: 20px;
  margin-top: -3px;
  margin-bottom: -3px;
  margin-right: 4px;
}
/* ========================================================
   Cookie Consent Banner & Modal
   ======================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 490px;
  background: #264653;
  color: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 22px rgba(38, 70, 83, 0.09);
  z-index: 2000;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideUp 0.6s cubic-bezier(0.54, 2.2, 0.5, 1);
}
@keyframes slideUp {
  0% { transform: translateX(-50%) translateY(100%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateX(-50%) translateY(0); opacity: 1;}
}
#cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-btn {
  padding: 10px 26px;
  border-radius: 23px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #E9C46A;
  color: #264653;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #264653;
  outline: 2px solid #E9C46A;
}
.cookie-btn.secondary {
  background: #264653;
  color: #E9C46A;
  border: 2px solid #E9C46A;
}
.cookie-btn.secondary:hover {
  background: #E9C46A;
  color: #264653;
}
#cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.64);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
#cookie-modal.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
#cookie-modal .modal-content {
  background: #fff;
  color: #264653;
  border-radius: 18px;
  padding: 44px 36px 32px 36px;
  min-width: 315px;
  max-width: 420px;
  box-shadow: 0 10px 38px rgba(38,70,83,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: drop 0.33s cubic-bezier(0.66, 1.7, 0.2, 1);
}
@keyframes drop {
  0% { transform: translateY(-80px) scale(0.97); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
#cookie-modal .cookie-modal-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #264653;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #878DA8;
  cursor: not-allowed;
}

/* ========================================================
   Typography Hierarchy / Custom Display
   ======================================================== */
.policy-text h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
}
.policy-text ul {
  list-style: disc;
  margin-left: 26px;
  margin-bottom: 18px;
}
.policy-text p, .policy-text li {
  color: #264653;
}

.faqs-preview dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faqs-preview dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  margin-bottom: 4px;
}
.faqs-preview dd {
  margin-left: 18px;
  margin-bottom: 8px;
}

/* Geometric Details & Angles */
.section, .offerings > div, .card, .feature-item, .testimonial-card {
  border-radius: 14px 38px 14px 14px;
  box-shadow: 0 2px 16px rgba(38,70,83,0.07);
}

/* ========================================================
   Responsive Design: Mobile-First
   ======================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.38rem; }
}
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero .container, .content-wrapper, .offerings, .course-listings, .workshop-calendar, .testimonial-slider, .feature-grid, .impact-stats, .team-bios, .success-story-list  {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }
  .section, .cta-section {
    padding: 22px 6px;
    margin-bottom: 33px;
    border-radius: 12px;
  }
  .card, .feature-item, .offerings > div, .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 22px 13px;
    border-radius: 10px 22px 10px 10px;
  }
  footer {
    padding: 30px 2px 14px 2px;
  }
  .footer-nav {
    gap: 12px;
    margin-bottom: 11px;
  }
  .footer-contact img {
    width: 44px;
  }
  #cookie-banner {
    padding: 16px 8px 14px 8px;
    max-width: 99vw;
    font-size: 0.95rem;
  }
  #cookie-modal .modal-content {
    min-width: 190px;
    padding: 20px 10px 22px 10px;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1rem; }
  p, .policy-text li, a, .cta-primary, .cta-secondary {
    font-size: 0.98rem !important;
  }
}

/* ========================================================
   Miscellaneous / Utilities
   ======================================================== */
::-webkit-scrollbar {
  width: 0.65rem;
  background: #E9C46A;
}
::-webkit-scrollbar-thumb {
  background: #264653;
  border-radius: 10px;
}
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1.5px solid #E9C46A;
  padding: 10px 15px;
  margin-bottom: 14px;
  font-size: 1rem;
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #264653;
}

/* ========================================================
   Geometric / Structured Style – Custom Decoratives
   ======================================================== */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: "";
  position: absolute;
  top: -15px; right: -22px;
  width: 36px; height: 36px;
  background: #E9C46A;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.21;
  z-index: 0;
}
.card:after,
.feature-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px; right: -13px;
  width: 23px; height: 23px;
  background: #E9C46A;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.18;
  z-index: 1;
}

/* Hide decorative for super-narrow cards on mobile */
@media (max-width: 500px) {
  .section:before,
  .card:after,
  .feature-item:after {
    display: none;
  }
}
/* Angled underline for geometric accent */
h2, h3 {
  position: relative;
  z-index: 2;
}
h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: #E9C46A;
  margin-top: 8px;
  border-radius: 3px;
  transform: skewX(-23deg);
}

/* ========================================================
   Accessibility: Focus & Contrast (esp. for testimonials)
   ======================================================== */
*:focus-visible {
  outline: 2px solid #E9C46A;
  outline-offset: 1.5px;
}
.testimonial-card p, .testimonial-card .testimonial-meta {
  color: #264653;
}

/* END OF CSS */
