/* -----------------------------------------------------
   BrightenFlow Akademie – Minimalist, Flexbox-Only CSS
   Modern, inspiring, trustworthy. Mobile-first, responsive.
   Brand: #124559 (primary), #F4A259 (secondary), #F7F5F2 (accent)
   Fonts: Montserrat (display), Open Sans (body)
----------------------------------------------------- */

/* -------- 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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #124559;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}
a {
  color: #124559;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F4A259;
  outline-offset: 3px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* -------- TYPOGRAPHY -------- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #124559;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.25px;
  color: #124559;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #124559;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #124559;
  margin-bottom: 8px;
}
p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
  color: #2E4756;
}
strong {
  font-weight: bold;
}
blockquote {
  font-style: italic;
  border-left: 3px solid #F4A259;
  padding-left: 20px;
  color: #124559;
  background: #F7F5F2;
  margin: 24px 0;
  font-size: 1.1rem;
}

/* -------- GENERAL LAYOUT CONTAINERS -------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* -------- FLEXBOX PATTERNS -------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7F5F2;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(18, 69, 89, 0.06);
  margin-bottom: 20px;
  min-width: 0;
  max-width: 440px;
  flex: 1 1 240px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------- HEADER -------- */
header {
  background: #fff;
  border-bottom: 1px solid #EEF2F6;
  position: relative;
  z-index: 20;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #124559;
  opacity: 0.88;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F4A259;
  border-bottom: 2px solid #F4A259;
  opacity: 1;
}
.button-primary {
  display: inline-block;
  background: #124559;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 28px;
  box-shadow: 0 3px 12px rgba(18, 69, 89, 0.10);
  margin-left: 18px;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.button-primary:hover, .button-primary:focus {
  background: #F4A259;
  color: #124559;
  box-shadow: 0 6px 20px rgba(244, 162, 89, 0.10);
}
.button-secondary {
  display: inline-block;
  background: #F4A259;
  color: #124559;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 24px;
  margin-top: 28px;
  margin-left: 0;
  box-shadow: 0 1px 6px rgba(244, 162, 89, 0.10);
  border: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.button-secondary:hover, .button-secondary:focus {
  background: #124559;
  color: #fff;
  box-shadow: 0 4px 12px rgba(18,69,89,0.10);
}

/* Mobile Menu (Hamburger) */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #124559;
  border: none;
  font-size: 2.2rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 30;
  border-radius: 6px;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:focus {
  background: #F7F5F2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.8,.22,.15,1);
  box-shadow: 0 12px 48px rgba(18,69,89,0.10);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #124559;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  padding: 16px;
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 1010;
  border-radius: 6px;
  transition: background 0.22s, color 0.18s;
}
.mobile-menu-close:focus {
  background: #F7F5F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #124559;
  font-size: 1.225rem;
  font-weight: 500;
  padding: 14px 0;
  border-radius: 8px;
  width: 80vw;
  text-align: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F4A259;
  color: #fff;
}
/* ----- Responsive Hamburger Display ----- */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .button-primary {
    margin-left: 6px;
    padding: 10px 22px;
    font-size: 1rem;
  }
}

/* -------- HERO SECTION -------- */
.hero {
  background: #F7F5F2;
  border-bottom: 1px solid #EEF2F6;
  padding: 40px 0 56px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  margin-bottom: 20px;
  font-size: 2.6rem;
}
.hero p {
  font-size: 1.18rem;
  color: #2E4756;
  margin-bottom: 30px;
}

/* -------- FEATURE CARDS & SERVICES -------- */
.feature-grid, .feature-icons, .benefit-list, .benefit-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 5px;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(18,69,89,0.05);
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.20s, transform 0.20s;
  margin-bottom: 20px;
}
.feature img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 10px 28px rgba(18, 69, 89, 0.13);
  transform: translateY(-4px) scale(1.015);
}

/* Services & Course Cards */
.service-cards, .workshop-cards, .course-overview-grid, .testimonial-cards, .post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-card, .workshop-card, .course-card, .blog-post {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(18, 69, 89, 0.07);
  padding: 30px 22px 24px 22px;
  min-width: 250px;
  max-width: 360px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.service-card:hover, .workshop-card:hover, .course-card:hover, .blog-post:hover {
  box-shadow: 0 8px 24px rgba(18, 69, 89, 0.12);
  transform: translateY(-3px) scale(1.018);
}
.service-price, .course-price, .workshop-price {
  margin-top: 16px;
  font-size: 1.24rem;
  color: #F4A259;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* -------- TESTIMONIALS -------- */
.testimonial-card p {
  color: #124559;
  font-size: 1.07rem;
  margin-bottom: 12px;
}
.testimonial-card .testimonial-meta {
  font-size: 1rem;
  color: #2E4756;
  opacity: 0.83;
  margin-top: 8px;
}
.testimonial-slider, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.quote-carousel {
  margin: 30px auto;
  text-align: center;
  font-style: italic;
  color: #124559;
  background: #F7F5F2;
  padding: 18px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(18,69,89,0.07);
  width: 100%;
  max-width: 680px;
}

/* -------- LISTS -------- */
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
ul li, ol li {
  font-size: 1.08rem;
  color: #2E4756;
  margin-bottom: 6px;
  list-style: disc;
}
.benefit-points ul, .contact-info-list {
  margin: 0 0 8px 12px;
}
.benefit-points ul li {
  list-style: circle;
}

/* -------- FAQ / ACCORDION (Non-JS, minimalist) -------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #F7F5F2;
  padding: 24px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(18, 69, 89, 0.06);
}
.faq-item {
  background: #fff;
  border-radius: 9px;
  padding: 18px 16px;
  box-shadow: 0 1px 3px rgba(18,69,89,0.05);
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 5px;
}
.faq-item p {
  font-size: 1rem;
  color: #2E4756;
}

/* -------- NEWSLETTER -------- */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.newsletter-signup label {
  font-size: 1rem;
  color: #124559;
  font-weight: 500;
}
.newsletter-signup input[type="email"] {
  border: 1px solid #EEF2F6;
  border-radius: 9px;
  padding: 10px 16px;
  font-size: 1rem;
  background: #fff;
  color: #124559;
  transition: border-color 0.17s;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #F4A259;
  outline: none;
}
.newsletter-signup button[type="submit"] {
  background: #F4A259;
  color: #124559;
  border-radius: 9px;
  padding: 10px 22px;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.newsletter-signup button[type="submit"]:hover,
.newsletter-signup button[type="submit"]:focus {
  background: #124559;
  color: #fff;
}

/* -------- FOOTER -------- */
footer {
  background: #F7F5F2;
  border-top: 1px solid #EEF2F6;
  padding: 36px 0 0 0;
  margin-top: 60px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.footer-logo {
  flex: 1 1 150px;
}
.footer-logo img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.97rem;
  color: #124559;
  opacity: 0.78;
  align-items: center;
}
.footer-nav a {
  color: #124559;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 0.18s;
  opacity: 0.78;
  padding: 3px 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4A259;
  opacity: 1;
}
.footer-contact {
  flex: 1 1 190px;
  font-size: 0.99rem;
  color: #124559;
  opacity: 0.88;
  letter-spacing: 0.01em;
}
.footer-social {
  flex: 1 1 90px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  opacity: 0.88;
  transition: opacity 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
}
footer .newsletter-signup {
  margin: 18px 0 8px 0;
}
footer .copyright {
  text-align: center;
  font-size: 0.95rem;
  color: #908f8b;
  opacity: 0.7;
  padding: 18px 0 8px 0;
}

/* -------- CATEGORY FILTER -------- */
.category-filter {
  margin-top: 16px;
  color: #124559;
  font-size: 1rem;
  opacity: 0.80;
}
.category-filter a {
  color: #F4A259;
  font-weight: 500;
  margin: 0 2px;
  transition: color 0.18s;
}
.category-filter a:hover, .category-filter a:focus {
  color: #124559;
}
.category {
  display: inline-block;
  background: #F4A259;
  color: #124559;
  border-radius: 8px;
  padding: 2px 12px;
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 8px;
}

/* -------- LABEL TAGS / EXPERTISE -------- */
.expertise-tag {
  background: #F4A259;
  color: #124559;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  padding: 3px 12px;
  margin-top: 6px;
}

/* -------- THANK YOU SECTION -------- */
.thankyou .content-wrapper {
  background: #F7F5F2;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(18,69,89,0.07);
  padding: 38px 30px;
  text-align: left;
  margin-top: 40px;
  align-items: flex-start;
}
.thankyou h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.thankyou ul li {
  margin-bottom: 5px;
  color: #2E4756;
}

/* -------- TRUST BADGES -------- */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}
.trust-badges img {
  height: 38px;
  width: auto;
}

/* -------- MISC STYLES -------- */
.before-after-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
}
.before-after-stats ul {
  min-width: 200px;
}
.milestone-timeline ul {
  min-width: 200px;
  margin-left: 0;
  margin-bottom: 0;
}
.milestone-timeline p {
  margin-bottom: 8px;
}
.team-member-bio {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(18,69,89,0.05);
  padding: 20px 16px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 180px;
}
.team-member-bio h3 {
  font-size: 1.18rem;
}
.contact-info-list {
  margin-top: 0;
  margin-bottom: 12px;
}

/* -------- RESPONSIVE DESIGN -------- */
@media (max-width: 1024px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .feature-grid, .service-cards, .course-overview-grid, .workshop-cards, .testimonial-slider, .testimonial-cards, .post-grid, .benefit-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 10px;
  }
  .hero {
    padding: 22px 0 28px 0;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .feature-grid, .service-cards, .course-overview-grid, .workshop-cards, .testimonial-slider, .testimonial-cards, .content-grid, .post-grid, .benefit-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature, .service-card, .course-card, .workshop-card, .team-member-bio, .blog-post, .testimonial-card {
    max-width: 97vw;
    min-width: 0;
    padding: 18px 10px;
  }
  .testimonial-slider, .testimonial-cards {
    gap: 10px;
  }
  .content-wrapper {
    gap: 12px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 9px;
  }
  .newsletter-signup form {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

@media (max-width: 465px) {
  html {
    font-size: 14px;
  }
  .button-primary, .button-secondary {
    font-size: 0.97rem;
    padding: 10px 10vw;
  }
  .logo img {
    height: 28px;
  }
}

/* -------- BUTTONS DEFAULTS -------- */
button, .button-primary, .button-secondary {
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.16s, box-shadow 0.15s;
}
button:active, .button-primary:active, .button-secondary:active {
  transform: scale(0.98);
}

/* -------- MICRO-INTERACTIONS / HOVER EFFECTS -------- */
.feature, .service-card, .course-card, .workshop-card, .blog-post, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature:active, .service-card:active, .course-card:active, .workshop-card:active, .blog-post:active {
  transform: scale(0.98);
}

/* -------- COOKIE CONSENT BANNER -------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #F4A259;
  box-shadow: 0 -2px 18px rgba(18, 69, 89, 0.13);
  z-index: 1160;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 8vw 18px 8vw;
  gap: 32px;
  font-size: 1rem;
  color: #124559;
  transition: transform 0.28s cubic-bezier(.8,.22,.15,1), opacity 0.22s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  margin: 0 18px 0 0;
  flex: 3 1 0;
  color: #124559;
  font-size: 1rem;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  flex: 1 1 auto;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
}
.cookie-consent-banner .accept {
  background: #124559;
  color: #fff;
  transition: background 0.17s, color 0.17s;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #F4A259;
  color: #124559;
}
.cookie-consent-banner .reject {
  background: #F7F5F2;
  color: #124559;
  border: 1px solid #F4A259;
  transition: background 0.17s, color 0.16s;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #F4A259;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #fff;
  color: #124559;
  border: 1px solid #EEF2F6;
  transition: background 0.19s, color 0.16s;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  border: 1px solid #F4A259;
  background: #F7F5F2;
  color: #124559;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 16px 8vw 10px 8vw;
    font-size: 0.98rem;
  }
  .cookie-consent-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* -------- COOKIE CONSENT MODAL -------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1170;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,69,89,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(18,69,89,0.14);
  max-width: 98vw;
  min-width: 320px;
  padding: 44px 34px 32px 34px;
  position: relative;
  z-index: 1171;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-close {
  background: none;
  color: #124559;
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.cookie-modal-close:focus {
  background: #F7F5F2;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F5F2;
  border-radius: 8px;
  padding: 15px 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #124559;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #F4A259;
}
.cookie-category input:disabled + label {
  color: #bbb;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
}
.cookie-modal .modal-actions .accept {
  background: #124559;
  color: #fff;
}
.cookie-modal .modal-actions .accept:hover, .cookie-modal .modal-actions .accept:focus {
  background: #F4A259;
  color: #124559;
}
.cookie-modal .modal-actions .reject {
  background: #F7F5F2;
  color: #124559;
  border: 1px solid #F4A259;
}
.cookie-modal .modal-actions .reject:hover, .cookie-modal .modal-actions .reject:focus {
  background: #F4A259;
  color: #fff;
}
@media (max-width: 550px) {
  .cookie-modal {
    padding: 20px 7vw 18px 7vw;
    min-width: 0;
    width: 94vw;
  }
  .cookie-modal-close {
    right: 10px;
    top: 6px;
  }
}

/* --------- ACCESSIBLE FOCUS STATES --------- */
:focus-visible {
  outline: 2px solid #F4A259;
  outline-offset: 2px;
}

/* --------- SMOOTH TRANSITIONS FOR MICRO-INTERACTION --------- */
html {
  scroll-behavior: smooth;
}

/* --------- PREVENT OVERLAPPING & ENSURE SPACING --------- */
.section + .section,
.content-wrapper + .content-wrapper,
.card + .card,
.service-card + .service-card,
.testimonial-card + .testimonial-card,
.feature + .feature,
.course-card + .course-card,
.workshop-card + .workshop-card,
.newsletter-signup + .newsletter-signup {
  margin-top: 20px;
}

/* --------- MISC --------- */
::-webkit-input-placeholder { color: #bbc2cc; }
::-moz-placeholder { color: #bbc2cc; }
:-ms-input-placeholder { color: #bbc2cc; }
::placeholder { color: #bbc2cc; }

body {
  background: #fff;
}

/* -------------------------------------------
   END BrightenFlow Akademie style.css
-------------------------------------------- */
