/* ============================================
   SPEAKBOLD ACADEMY - MINIMALIST DESIGN SYSTEM
   Confident, empowering, modern professional
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  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, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY - MINIMALIST HIERARCHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1B365D;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #2C3E50;
}

a {
  color: #C41E3A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8B0000;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   HEADER - MINIMALIST NAVIGATION
   ============================================ */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #1B365D;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C41E3A;
  border-bottom-color: #C41E3A;
}

/* ============================================
   MOBILE MENU - SLIDE-IN NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #C41E3A;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B0000;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1B365D;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #1B365D;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C41E3A;
  padding-left: 8px;
}

/* ============================================
   HERO SECTION - MINIMALIST IMPACT
   ============================================ */

.hero {
  background-color: #F8F9FA;
  padding: 80px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid #E8E8E8;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.subheadline {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.6;
}

.last-updated {
  font-size: 14px;
  color: #7F8C8D;
  margin-top: 16px;
}

/* ============================================
   BUTTONS - MINIMALIST DESIGN
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #C41E3A;
  color: #FFFFFF;
  border-color: #C41E3A;
}

.btn-primary:hover {
  background-color: #8B0000;
  border-color: #8B0000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1B365D;
  border-color: #1B365D;
}

.btn-secondary:hover {
  background-color: #1B365D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ============================================
   TRUST INDICATORS - MINIMALIST STATS
   ============================================ */

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #E8E8E8;
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.indicator .number {
  font-size: 32px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Montserrat', sans-serif;
}

.indicator .label {
  font-size: 14px;
  color: #7F8C8D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   SECTIONS - GENEROUS SPACING
   ============================================ */

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

.section-subheadline {
  font-size: 18px;
  color: #7F8C8D;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */

.problem-solution {
  background-color: #F8F9FA;
  padding: 60px 20px;
  text-align: center;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 32px;
}

.problems {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.problems ul {
  list-style: none;
  padding: 0;
}

.problems li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C3E50;
}

.problems li:before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

.solution {
  font-size: 18px;
  color: #1B365D;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   CARD LAYOUTS - FLEXBOX ONLY
   ============================================ */

.service-cards,
.benefit-cards,
.testimonial-cards,
.program-cards,
.stat-cards,
.option-cards,
.activity-cards,
.value-cards,
.coach-cards,
.story-cards,
.article-cards,
.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.benefit-card,
.program-card,
.option-card,
.activity-card,
.value-card,
.coach-card,
.story-card,
.article-card,
.resource-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.benefit-card:hover,
.program-card:hover,
.option-card:hover,
.activity-card:hover,
.value-card:hover,
.coach-card:hover,
.story-card:hover,
.article-card:hover,
.resource-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card h3,
.benefit-card h3,
.program-card h3,
.option-card h3,
.activity-card h3,
.value-card h3,
.coach-card h3,
.story-card h3,
.article-card h3,
.resource-card h3 {
  color: #1B365D;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Montserrat', sans-serif;
  margin: 8px 0;
}

.duration,
.format,
.level,
.ideal-for,
.type,
.meta,
.program {
  font-size: 14px;
  color: #7F8C8D;
  margin: 4px 0;
}

.title,
.client-title,
.credentials {
  font-size: 14px;
  color: #7F8C8D;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #F8F9FA;
  padding: 60px 20px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-left: 4px solid #C41E3A;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-size: 18px;
  line-height: 1.6;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
}

.client-name {
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 4px;
}

/* ============================================
   STATS & IMPACT
   ============================================ */

.stat-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
}

.stat-card .number,
.stat-card .stat {
  font-size: 48px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  display: block;
}

.stat-card .label,
.stat-card p {
  font-size: 14px;
  color: #7F8C8D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   FEATURED STORY SECTION
   ============================================ */

.featured-story {
  background-color: #F8F9FA;
  padding: 60px 20px;
}

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

.story-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E8E8E8;
}

.story-header h3 {
  color: #1B365D;
  margin-bottom: 8px;
}

.story-body p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.story-body strong {
  color: #C41E3A;
  font-weight: 700;
}

.story-body .quote {
  background-color: #FFFFFF;
  border-left: 4px solid #C41E3A;
  padding: 24px;
  margin: 32px 0;
  border-radius: 4px;
}

.summary {
  color: #2C3E50;
  margin-bottom: 16px;
}

.highlight {
  background-color: #FFF9E6;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  color: #1B365D;
  margin: 16px 0;
}

/* ============================================
   MISSION, VISION, VALUES
   ============================================ */

.mission-vision {
  padding: 60px 20px;
}

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

.mission,
.vision {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mission h2,
.vision h2 {
  color: #C41E3A;
  margin-bottom: 16px;
}

.values {
  margin-top: 40px;
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================
   TEXT-IMAGE SECTIONS - FLEXBOX
   ============================================ */

.text-image-section,
.text-section {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex-direction: column;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */

.contact-options,
.contact-form-section,
.office-hours {
  padding: 40px 20px;
}

.form-display {
  background-color: #F8F9FA;
  border: 2px dashed #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  margin: 32px auto;
  max-width: 600px;
}

.form-display p {
  margin-bottom: 16px;
  color: #2C3E50;
}

.privacy-note {
  font-size: 14px;
  color: #7F8C8D;
  margin-top: 24px;
  font-style: italic;
}

.hours-table {
  max-width: 500px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #1B365D;
}

.time {
  color: #2C3E50;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 40px 20px;
}

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

.legal-content h2 {
  color: #C41E3A;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background-color: #1B365D;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  font-size: 14px;
  color: #F4A460;
  margin-top: 16px;
  font-style: italic;
}

.confirmation,
.phone,
.timeframe {
  font-weight: 600;
  color: #C41E3A;
  display: block;
  margin: 16px 0;
}

.step-card,
.option-card {
  text-align: center;
}

.detail {
  font-weight: 600;
  color: #1B365D;
  margin: 16px 0;
}

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

/* ============================================
   FOOTER - MINIMALIST LAYOUT
   ============================================ */

footer {
  background-color: #F8F9FA;
  border-top: 1px solid #E8E8E8;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.tagline {
  font-size: 14px;
  color: #7F8C8D;
  font-style: italic;
}

.footer-column h4 {
  color: #1B365D;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-legal a {
  color: #2C3E50;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #C41E3A;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #E8E8E8;
}

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8E8E8;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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;
  color: #2C3E50;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: #C41E3A;
  color: #FFFFFF;
  border-color: #C41E3A;
}

.cookie-accept:hover {
  background-color: #8B0000;
}

.cookie-reject {
  background-color: transparent;
  color: #1B365D;
  border-color: #1B365D;
}

.cookie-reject:hover {
  background-color: #1B365D;
  color: #FFFFFF;
}

.cookie-settings {
  background-color: transparent;
  color: #7F8C8D;
  border-color: #E8E8E8;
}

.cookie-settings:hover {
  border-color: #7F8C8D;
  color: #2C3E50;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal h3 {
  color: #1B365D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  color: #1B365D;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E8E8E8;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #C41E3A;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

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

.cookie-category p {
  font-size: 14px;
  color: #7F8C8D;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 0;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Trust indicators */
  .trust-indicators {
    gap: 32px;
  }
  
  .indicator .number {
    font-size: 24px;
  }
  
  /* Cards - single column on mobile */
  .service-cards,
  .benefit-cards,
  .testimonial-cards,
  .program-cards,
  .stat-cards,
  .option-cards,
  .activity-cards,
  .value-cards,
  .coach-cards,
  .story-cards,
  .article-cards,
  .resource-cards {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .testimonial-card,
  .program-card,
  .stat-card,
  .option-card,
  .activity-card,
  .value-card,
  .coach-card,
  .story-card,
  .article-card,
  .resource-card {
    max-width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Stats */
  .stat-card .number,
  .stat-card .stat {
    font-size: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 32px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  .service-card,
  .benefit-card,
  .testimonial-card,
  .program-card {
    page-break-inside: avoid;
  }
}