/* Reset & Base Styles */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #2C3967;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2C3967;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FCD987;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
  padding: 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  color: #2C3967;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  color: #37447a;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.35rem;
  color: #2C3967;
}
.subheadline {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #AEB5C9;
  margin-bottom: 16px;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  color: #2C3967;
  font-weight: 700;
}

/* Creative Artistic Accents */
hr, .decorative-bar {
  border: 0;
  height: 4px;
  width: 50px;
  background: #FCD987;
  border-radius: 2px;
  margin: 24px 0;
}

/* Main Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(44, 57, 103, 0.07);
  z-index: 1020;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
}
.main-nav > a img {
  height: 44px;
  display: block;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav li {
  display: flex;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 3px;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
  background: #f6f6fd;
  color: #FCD987;
}
.main-nav .cta.primary {
  background: #FCD987;
  color: #2C3967;
  font-weight: bold;
  padding: 9px 22px;
  font-size: 1rem;
  margin-left: 24px;
  border-radius: 50px;
  box-shadow: 0 3px 16px rgba(252,217,135,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.25s;
  border: 0;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #2C3967;
  color: #FCD987;
  box-shadow: 0 6px 24px rgba(44,57,103,0.20);
}
.main-nav .cta.secondary {
  background: #2C3967;
  color: #fff;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: bold;
  border: 0;
  font-size: 1rem;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.main-nav .cta.secondary:hover, .main-nav .cta.secondary:focus {
  background: #FCD987;
  color: #2C3967;
}

/* Hamburger & Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: #2C3967;
  color: #FCD987;
  border-radius: 8px;
  border: 0;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1040;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FCD987;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #2C3967;
  z-index: 2010;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.86,.03,.24,.96);
  box-shadow: 0 16px 32px rgba(44,57,103,0.20);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px 0 0;
  background: #FCD987;
  color: #2C3967;
  font-size: 2rem;
  border-radius: 8px;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 2040;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  height: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 10px 0;
  width: 92vw;
  text-align: center;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCD987;
  color: #2C3967;
}

@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, #FCD987 0%, #fff 100%);
  min-height: 330px;
  padding: 0 0 36px 0;
  overflow: hidden;
  border-bottom-left-radius: 80px 24px;
  border-bottom-right-radius: 30px 22px;
  box-shadow: 0 6px 28px 0 rgba(252,217,135,0.09);
  position: relative;
}
.hero .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  padding: 48px 10px 28px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
  z-index: 2;
}
.hero h1 {
  font-size: 2.8rem;
  color: #2C3967;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.09;
  margin-bottom: 12px;
}
.hero .subheadline {
  color: #37447a;
  font-size: 1.18rem;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .hero { min-height: 0; 
    border-bottom-left-radius: 42px 17px;
    border-bottom-right-radius: 12px 9px;
    padding-bottom: 12px;
  }
  .hero .content-wrapper {
    padding: 36px 0 20px 0;
    max-width: 100vw;
  }
}

/* Features Section */
.features {
  display: flex;
  align-items: center;
  background: #f9f7fa;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(44,57,103,0.04);
  margin-bottom: 60px;
}
.features .container {
  width: 100%;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 0 0 0;
}
.features h2 {
  margin-bottom: 18px;
  font-size: 2rem;
  letter-spacing: 0.01em;
  color: #2C3967;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-left: 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: #2C3967;
  font-weight: 500;
  border-left: 5px solid #FCD987;
  background: #fff;
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(44,57,103,0.04);
}
.features li img {
  width: 36px; height: 36px;
  background: #fffbe5;
  border-radius: 50%;
  padding: 4px;
  margin-right: 3px;
}

/* Services/Offers Overview Section */
.services-overview, .course-details, .service-details, .workshop-details {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 rgba(44,57,103,0.06);
}
.services-overview .content-wrapper, .service-details .content-wrapper, .course-details .content-wrapper, .workshop-details .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.service-list > div {
  background: #f9f7fa;
  border-radius: 14px;
  box-shadow: 0 3px 15px 0 rgba(44,57,103,0.05);
  padding: 22px 20px;
  flex: 1 1 260px;
  min-width: 270px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid #AEB5C9;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-list > div:hover, .service-list > div:focus-within {
  border-left: 4px solid #FCD987;
  box-shadow: 0 8px 28px 0 rgba(252,217,135,0.10);
}
.service-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #2C3967;
  letter-spacing: 0.01em;
}
.service-list a {
  margin-top: 8px;
  font-weight: 600;
  color: #2C3967;
  text-decoration: underline;
  font-size: 1.01rem;
  transition: color 0.2s;
}
.service-list a:hover,
.service-list a:focus {
  color: #FCD987;
}

@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* Card Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;   /* Only decorative absolute allowed */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(252,217,135,0.09);
  padding: 24px 20px;
  transition: box-shadow 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 35px 0 rgba(44,57,103,0.17);
}

.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: 14px;
    align-items: flex-start;
  }
}

/* Testimonials */
.testimonials, .course-feedback, .workshop-benefits .text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fffbe5;
  border-radius: 30px;
  box-shadow: 0 6px 28px 0 rgba(252,217,135,0.08);
  padding: 40px 20px;
  margin-bottom: 60px;
  position: relative;
}
.testimonials h2, .course-feedback h2, .workshop-benefits h2 {
  color: #2C3967;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(44,57,103,0.06);
  margin-bottom: 24px;
  position: relative;
  min-width: 260px;
  max-width: 540px;
  color: #2C3967;
  word-break: break-word;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #2C3967;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #AEB5C9;
  font-style: normal;
  margin-left: 20px;
}

@media (max-width: 900px) {
  .testimonials, .course-feedback, .workshop-benefits .text-section {
    padding: 24px 8px;
  }
  .testimonial-card {
    min-width: 95vw;
    max-width: 100vw;
    padding: 16px 10px;
    margin-left: 0; margin-right: 0;
  }
}

/* Contact Section */
.contact-section, .contact-details-section {
  background: #f9f7fa;
  border-radius: 30px;
  box-shadow: 0 2px 10px 0 rgba(44,57,103,0.04);
  margin-bottom: 60px;
}
.contact-section ul,
.contact-details-section ul {
  margin: 8px 0 24px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-section a.cta,
.contact-details-section a.cta {
  margin-top: 8px;
}

/* About, Policy, Footer Style */
.about-section, .usp-section, .team-section, .footer-policy, .footer-gdpr, .footer-cookie, .footer-terms, .thank-you-section {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 14px 0 rgba(44,57,103,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.trust-signals {
  background: #FCD987;
  color: #2C3967;
  border-radius: 16px;
  padding: 16px 22px;
  margin-top: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 12px rgba(44,57,103,0.04);
}

/* Buttons & Calls To Action (CTAs) */
.cta {
  border: none;
  padding: 10px 26px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s, transform 0.13s;
  box-shadow: 0 2px 12px 0 rgba(252,217,135, 0.12);
  letter-spacing: 0.015em;
}
.cta.primary {
  background: #FCD987;
  color: #2C3967;
}
.cta.primary:hover, .cta.primary:focus {
  background: #2C3967;
  color: #FCD987;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 23px rgba(252,217,135,0.16);
}
.cta.secondary {
  background: #2C3967;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #AEB5C9;
  color: #2C3967;
  transform: translateY(-2px) scale(1.04);
}

/* Footer */
footer {
  background: #2C3967;
  color: #fff;
  border-top-left-radius: 40px 12px;
  border-top-right-radius: 15px 7px;
  padding-bottom: 18px;
  margin-top: 60px;
  box-shadow: 0 -3px 24px rgba(44,57,103,0.08);
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
  padding: 16px 0 3px 0;
}
.footer-nav li {
  margin-bottom: 0;
}
.footer-nav a {
  color: #fff;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.91;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FCD987;
  color: #2C3967;
  opacity: 1;
}
.footer-info {
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
  padding-bottom: 5px;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #2C3967;
  color: #fff;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3000;
  box-shadow: 0 -2px 22px 0 rgba(44,57,103,0.10);
  animation: cc-fadein 0.55s cubic-bezier(.48,.98,.32,.98);
}
@keyframes cc-fadein { from {opacity: 0;transform:translateY(40px);} to {opacity:1;transform:translateY(0);} }
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner .cookie-cta {
  background: #FCD987;
  color: #2C3967;
  border-radius: 28px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 22px;
  box-shadow: 0 1px 7px 0 rgba(252,217,135, 0.13);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-consent-banner .cookie-cta.cookie-settings {
  background: none;
  color: #FCD987;
  border: 2px solid #FCD987;
  padding: 8px 22px;
  margin-left: 6px;
}
.cookie-consent-banner .cookie-cta:hover, .cookie-consent-banner .cookie-cta:focus {
  background: #fff;
  color: #2C3967;
}
.cookie-consent-banner .cookie-cta.cookie-settings:hover, .cookie-consent-banner .cookie-cta.cookie-settings:focus {
  background: #FCD987;
  color: #2C3967;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(44,57,103,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3500;
  animation: cc-modal-in 0.39s cubic-bezier(.86,.03,.24,.96);
}
@keyframes cc-modal-in { from {opacity:0;transform:scale(0.96);} to {opacity:1;transform:scale(1);} }
.cookie-modal-content {
  background: #fff;
  color: #2C3967;
  border-radius: 22px;
  padding: 38px 28px 28px 28px;
  min-width: 300px;
  max-width: 96vw;
  box-shadow: 0 2px 33px rgba(44,57,103,0.21);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cc-fadein 0.22s cubic-bezier(.48,.98,.32,.98);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 19px;
  font-size: 1.75rem;
  color: #AEB5C9;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9;
  padding: 5px;
  border-radius: 6px;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FCD987;
  color: #2C3967;
}
.cookie-modal-content h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #2C3967;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  appearance: none;
  background: #AEB5C9;
  outline: none;
  border-radius: 12px;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #FCD987;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 2px; left: 2px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.22s;
}
.cookie-toggle:checked:before {
  left: 22px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-footer .cookie-cta {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .cookie-modal-content { padding:22px 5vw 16px 5vw; max-width: 99vw; }
}

/* Artistic Section Separators */
.section-separator {
  height: 12px;
  width: 100%;
  background: #FCD987;
  border-radius: 0 0 30px 15px;
  margin: 42px 0 24px 0;
  box-shadow: 0 5px 14px 0 rgba(252,217,135,0.08);
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .container { max-width: 95vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.15rem; }
  .footer-nav ul { flex-direction: column; gap: 10px; }
}

/* Micro Animations */
.card, .service-list > div, .cta, .testimonial-card, .cookie-consent-banner, .cookie-modal-content {
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover, .service-list > div:hover, .cta:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
}

/* Artistic Decorations */
.section::after, .about-section::after, .usp-section::after, .team-section::after, .services-overview::after {
  content: '';
  display: block;
  height: 8px;
  width: 72px;
  border-radius: 4px;
  background: #FCD987;
  margin: 36px auto 0 auto;
  opacity: 0.2;
}

/* Specialty Flex Layouts -- ensure flex usage everywhere forbidden grid */
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form Elements (if present in future) */
input, textarea, select {
  border: 1.5px solid #AEB5C9;
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.18s;
  background: #fafaff;
  color: #2C3967;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FCD987;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3967;
  margin-bottom: 6px;
}

/* Accessibility -- High contrast for testimonial text on light backgrounds */
.testimonial-card,
.course-feedback .testimonial-card,
.workshop-benefits .testimonial-card {
  background: #fff;
  color: #2C3967;
  box-shadow: 0 2px 16px 0 rgba(44,57,103,0.09);
}

/* General Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* No grid, no columns anywhere -- Only Flex layouts used */
