/* ===================================
   SPARSE FOREST ACADEMY - MODERN BOLD DESIGN
   CSS Stylesheet with Flexbox-Only Layouts
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* MODERN BOLD TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #2D5016;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #7A9D54;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* MODERN BOLD BUTTONS */
.button-primary,
.cta-button,
.button-secondary {
  display: inline-block;
  padding: 18px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
}

.button-primary,
.cta-button {
  background: #2D5016;
  color: #ffffff;
  border: 3px solid #000000;
}

.button-primary:hover,
.cta-button:hover {
  background: #1a3009;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.4);
}

.button-primary:active,
.cta-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.button-secondary {
  background: #ffffff;
  color: #2D5016;
  border: 3px solid #000000;
}

.button-secondary:hover {
  background: #E8DCC4;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.4);
}

.card-link,
.text-link {
  color: #2D5016;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 3px solid #2D5016;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.card-link:hover,
.text-link:hover {
  color: #000000;
  border-bottom-color: #000000;
  transform: translateX(4px);
}

/* HEADER STYLES */
header {
  background: #ffffff;
  border-bottom: 4px solid #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #2D5016;
  border-bottom-color: #2D5016;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: #2D5016;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  border: 3px solid #000000;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1a3009;
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #2D5016;
  z-index: 1000;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #ffffff;
  color: #2D5016;
  font-size: 32px;
  font-weight: 700;
  border: 3px solid #000000;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E8DCC4;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8DCC4;
  border-bottom-color: #E8DCC4;
  padding-left: 16px;
}

/* HERO SECTION - MODERN BOLD */
.hero {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #000000;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(122, 157, 84, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 32px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.trust-badge {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  display: inline-block;
  border: 2px solid #ffffff;
  position: relative;
  z-index: 1;
}

/* PAGE HERO - BOLD STYLE */
.page-hero,
.legal-hero,
.error-hero,
.thank-you-hero {
  background: #E8DCC4;
  padding: 80px 20px 60px;
  border-bottom: 6px solid #000000;
  position: relative;
}

.page-hero::after,
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, #000000 0px, #000000 20px, transparent 20px, transparent 40px);
}

.breadcrumb {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #2D5016;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* VALUE PROPOSITION - BOLD CARDS */
.value-proposition {
  background: #ffffff;
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
}

.intro-text {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #2D5016;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background: #2D5016;
  color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.value-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 14px;
  font-weight: 600;
}

/* SERVICES GRID - MODERN BOLD */
.services-preview {
  background: #f5f5f5;
  border-bottom: 4px solid #000000;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: -20px auto 60px;
  color: #666666;
}

.services-grid,
.course-grid,
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.service-card,
.course-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.course-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

.service-card h3,
.course-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 16px;
}

.service-card p,
.course-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #2D5016;
  margin: 16px 0;
}

.badge {
  display: inline-block;
  background: #7A9D54;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #000000;
  margin-bottom: 16px;
}

.price-highlight {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #2D5016;
  margin: 40px 0;
  text-transform: uppercase;
}

/* HOW IT WORKS - BOLD GEOMETRIC */
.how-it-works {
  background: #2D5016;
  color: #ffffff;
  border-top: 6px solid #000000;
  border-bottom: 6px solid #000000;
}

.how-it-works h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid #ffffff;
  margin-bottom: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #E8DCC4;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.step h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #ffffff;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #E8DCC4;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.1);
  font-family: 'Montserrat', sans-serif;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.testimonial-author {
  font-weight: 700;
  color: #2D5016;
  margin-top: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #000000;
}

/* STATS - BOLD NUMBERS */
.stats,
.stats-banner {
  background: #000000;
  color: #ffffff;
  padding: 80px 20px;
  border-top: 6px solid #2D5016;
  border-bottom: 6px solid #2D5016;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  position: relative;
}

.stat h3 {
  font-size: 60px;
  font-weight: 900;
  color: #E8DCC4;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0 #2D5016;
}

.stat p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* CTA BANNER - BOLD IMPACT */
.cta-banner {
  background: #7A9D54;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #000000;
  border-bottom: 6px solid #000000;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 24px;
  border-top: 6px solid #2D5016;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

footer h4 {
  color: #E8DCC4;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer ul li a {
  color: #cccccc;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 14px;
}

footer ul li a:hover {
  color: #E8DCC4;
  padding-left: 8px;
}

footer p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #333333;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: #999999;
}

/* BLOG & ARTICLES */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.article-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

.category-badge {
  display: inline-block;
  background: #2D5016;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #000000;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  font-weight: 600;
  border-top: 2px solid #e0e0e0;
  padding-top: 16px;
  margin-top: auto;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* SUCCESS STORIES */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.story-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

.story-card h3 {
  font-size: 24px;
  color: #2D5016;
  margin-bottom: 8px;
}

.role {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.achievement {
  background: #E8DCC4;
  padding: 12px 20px;
  font-weight: 700;
  color: #2D5016;
  border-left: 4px solid #2D5016;
  margin-top: 16px;
  font-size: 14px;
  text-transform: uppercase;
}

/* FAQ SECTION */
.faq-section,
.faq-quick {
  background: #f5f5f5;
  padding: 80px 20px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.faq-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 16px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}

/* CONTACT FORMS */
.contact-grid,
.options-grid,
.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.contact-details,
.contact-form-section {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
}

.info-block {
  margin-bottom: 32px;
  padding: 24px;
  background: #f5f5f5;
  border-left: 4px solid #2D5016;
}

.info-block h3 {
  font-size: 16px;
  color: #2D5016;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.option-card,
.action-card,
.explore-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.option-card:hover,
.action-card:hover,
.explore-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

.option-card h3,
.action-card h3,
.explore-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* 404 ERROR PAGE */
.error-hero {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.error-code {
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.error-content h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.link-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

.link-card h3 {
  font-size: 18px;
  color: #2D5016;
}

.course-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.course-mini {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.course-mini:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

/* THANK YOU PAGE */
.success-icon {
  width: 100px;
  height: 100px;
  background: #2D5016;
  color: #ffffff;
  font-size: 60px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 6px solid #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.confirmation-text {
  font-size: 16px;
  color: #666666;
  margin-top: 24px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2D5016;
  border-bottom: 3px solid #2D5016;
  padding-bottom: 12px;
}

.content-wrapper h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: none;
  margin-bottom: 24px;
}

.content-wrapper ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-wrapper ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-size: 12px;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
}

/* ADDITIONAL UTILITY CLASSES */
.text-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.text-section {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  margin-bottom: 20px;
}

.values-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values-list ul li {
  padding: 16px 24px;
  background: #E8DCC4;
  border-left: 4px solid #2D5016;
  font-weight: 600;
  font-size: 16px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.qualifications-grid,
.principles-grid,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.qualification-card,
.principle-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.qualification-card:hover,
.principle-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.3);
}

.expertise-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #2D5016;
  color: #ffffff;
  padding: 24px;
  text-align: center;
  font-weight: 700;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;
}

.achievements-list {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.achievements-list li {
  padding: 20px 24px;
  background: #E8DCC4;
  border-left: 4px solid #2D5016;
  font-weight: 600;
  font-size: 16px;
}

.career-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.career-stat {
  flex: 1 1 150px;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.career-stat h3 {
  font-size: 48px;
  color: #2D5016;
  margin-bottom: 8px;
}

.career-stat p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-signup {
  background: #2D5016;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #000000;
  border-bottom: 6px solid #000000;
}

.newsletter-signup h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-signup p {
  margin-bottom: 32px;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.subscriber-count {
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  display: inline-block;
  border: 2px solid #ffffff;
  text-transform: uppercase;
}

.course-count {
  font-size: 16px;
  font-weight: 700;
  color: #2D5016;
  margin-top: 16px;
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  padding: 20px 24px 20px 60px;
  background: #ffffff;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  font-size: 24px;
  font-weight: 900;
  color: #2D5016;
}

.form-note {
  font-size: 14px;
  color: #666666;
  margin-top: 8px;
}

.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.while-you-wait {
  background: #f5f5f5;
}

.social-proof {
  background: #E8DCC4;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  border-top: 4px solid #2D5016;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  font-size: 14px;
  margin-bottom: 8px;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.cookie-accept {
  background: #2D5016;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #1a3009;
  transform: translateY(-2px);
}

.cookie-reject {
  background: #666666;
  color: #ffffff;
}

.cookie-reject:hover {
  background: #555555;
}

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #2D5016;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  border-left: 4px solid #2D5016;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #cccccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 2px solid #000000;
}

.cookie-toggle.active {
  background: #2D5016;
}

.cookie-toggle.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  border: 2px solid #000000;
}

.cookie-toggle.active::after {
  transform: translateX(30px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.cookie-save {
  background: #2D5016;
  color: #ffffff;
}

.cookie-save:hover {
  background: #1a3009;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .value-card,
  .qualification-card,
  .principle-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .main-nav,
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* SECTIONS */
  section { padding: 60px 20px; }
  
  /* FLEXBOX MOBILE LAYOUTS */
  .value-grid,
  .services-grid,
  .course-grid,
  .courses-grid,
  .steps-grid,
  .testimonial-grid,
  .stats-grid,
  .article-grid,
  .story-grid,
  .faq-grid,
  .contact-grid,
  .options-grid,
  .action-grid,
  .link-grid,
  .course-mini-grid,
  .qualifications-grid,
  .principles-grid,
  .expertise-grid,
  .explore-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .course-card,
  .step,
  .testimonial-card,
  .article-card,
  .story-card,
  .faq-item,
  .option-card,
  .action-card,
  .link-card,
  .course-mini,
  .qualification-card,
  .principle-card,
  .expertise-card,
  .explore-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .text-grid,
  .text-section,
  .contact-details,
  .contact-form-section {
    flex: 1 1 100%;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .button-primary,
  .button-secondary,
  .cta-button {
    width: 100%;
    padding: 16px 24px;
  }
  
  /* FOOTER */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* COOKIE CONSENT */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    width: 95%;
    padding: 24px;
  }
  
  /* STATS */
  .stat h3 { font-size: 48px; }
  .error-code { font-size: 100px; }
  
  /* CARDS SHADOW REDUCTION */
  .service-card,
  .course-card,
  .testimonial-card,
  .article-card,
  .story-card {
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
  
  .service-card:hover,
  .course-card:hover,
  .testimonial-card:hover,
  .article-card:hover,
  .story-card:hover {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .hero { padding: 60px 20px; }
  
  .container { padding: 0 16px; }
  
  .button-primary,
  .button-secondary,
  .cta-button {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .service-card,
  .course-card,
  .testimonial-card,
  .article-card,
  .story-card,
  .option-card {
    padding: 24px;
  }
  
  .stat h3 { font-size: 40px; }
  .step-number { width: 60px; height: 60px; font-size: 28px; }
  
  .content-wrapper { padding: 24px; }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
:focus-visible {
  outline: 3px solid #2D5016;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #2D5016;
  outline-offset: 2px;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .button-primary,
  .button-secondary,
  .cta-button {
    border-width: 4px;
  }
  
  .service-card,
  .course-card,
  .testimonial-card {
    border-width: 5px;
  }
}