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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF8F3;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.main-nav img {
  height: 50px;
  width: auto;
}

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

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #2C3E50;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #C74423;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #C74423;
}

/* ========================================
   MOBILE MENU
   ======================================== */

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 0 40px;
}

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

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

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

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

.mobile-nav a {
  padding: 20px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #2C3E50;
  border-bottom: 1px solid #F0E8E0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #FFF8F3;
  color: #C74423;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

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

.btn-primary {
  background-color: #C74423;
  color: #FFFFFF;
  border-color: #C74423;
  box-shadow: 0 4px 12px rgba(199, 68, 35, 0.3);
}

.btn-primary:hover {
  background-color: #8B2F16;
  border-color: #8B2F16;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 47, 22, 0.4);
}

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

.btn-secondary:hover {
  background-color: #C74423;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 68, 35, 0.3);
}

.btn:active {
  transform: translateY(0);
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #C74423;
  margin-bottom: 16px;
  font-size: 48px;
}

.hero-subheadline {
  font-size: 24px;
  color: #F39C12;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Oswald', sans-serif;
}

.hero p {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.stats-inline {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #F39C12;
}

.stats-inline span {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #C74423;
  font-weight: 600;
}

/* ========================================
   ERROR PAGE (404)
   ======================================== */

.error-hero {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-code {
  font-size: 120px;
  font-family: 'Oswald', sans-serif;
  color: #C74423;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 #FFE8D6;
}

.error-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.error-hero .subheadline {
  font-size: 24px;
  color: #F39C12;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ========================================
   CARD LAYOUTS
   ======================================== */

.benefits-grid,
.service-cards,
.tier-grid,
.link-grid,
.methods-grid,
.format-grid,
.instructor-grid,
.articles-grid,
.category-grid,
.stats-grid,
.steps-grid,
.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.tier-card,
.link-card,
.method-card,
.format-card,
.instructor-card,
.article-card,
.category-card,
.stat,
.step-card,
.suggestion-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.tier-card:hover,
.link-card:hover,
.method-card:hover,
.format-card:hover,
.instructor-card:hover,
.article-card:hover,
.category-card:hover,
.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 68, 35, 0.15);
}

.benefit-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.benefit-card h3,
.service-card h3,
.tier-card h3,
.link-card h3,
.method-card h3,
.format-card h3,
.instructor-card h3,
.article-card h3,
.category-card h3,
.step-card h3,
.suggestion-card h3 {
  color: #C74423;
  font-size: 22px;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.link-card p,
.method-card p,
.format-card p,
.instructor-card p,
.article-card p,
.category-card p,
.step-card p,
.suggestion-card p {
  color: #2C3E50;
  margin-bottom: 8px;
  flex-grow: 1;
}

.price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #F39C12;
  font-weight: 700;
  margin: 16px 0;
}

.tier-price {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: #C74423;
  font-weight: 700;
  margin: 20px 0;
}

.badge {
  display: inline-block;
  background-color: #F39C12;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}

.tier-card.featured {
  border: 3px solid #C74423;
  transform: scale(1.05);
}

.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1;
}

.tier-card li {
  padding: 12px 0;
  border-bottom: 1px solid #F0E8E0;
  color: #2C3E50;
}

.tier-card li:last-child {
  border-bottom: none;
}

/* ========================================
   SERVICE DETAIL CARDS
   ======================================== */

.services-detail {
  margin-top: 60px;
}

.service-detail-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 24px rgba(199, 68, 35, 0.15);
}

.service-detail-card h2 {
  color: #C74423;
  font-size: 32px;
  margin-bottom: 12px;
}

.tagline {
  font-size: 18px;
  color: #F39C12;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Oswald', sans-serif;
}

.service-detail-card h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-detail-card li {
  padding: 12px 0 12px 32px;
  color: #2C3E50;
  position: relative;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F39C12;
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 68, 35, 0.15);
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: #FFE8D6;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.step p {
  color: #2C3E50;
  font-size: 16px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 40px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #FFE8D6;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: #C74423;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  margin-bottom: 0;
}

.rating {
  color: #F39C12;
  font-size: 18px;
  margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
  background: linear-gradient(135deg, #C74423 0%, #8B2F16 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin: 60px 0;
  text-align: center;
}

.stats h2 {
  color: #FFFFFF;
  margin-bottom: 40px;
}

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

.stat {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 12px;
}

.stat p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 0;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #F39C12 0%, #FDB537 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin: 60px 0;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

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

.contact-cta {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin: 60px 0;
}

/* ========================================
   TWO COLUMN LAYOUTS
   ======================================== */

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
  justify-content: space-between;
}

.column {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.text-section {
  margin: 40px 0;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #C74423;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.text-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.text-section ul li {
  padding: 12px 0 12px 32px;
  color: #2C3E50;
  position: relative;
  line-height: 1.8;
}

.text-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F39C12;
  font-weight: 700;
  font-size: 24px;
}

.values {
  margin-top: 40px;
  padding: 32px;
  background-color: #FFF8F3;
  border-radius: 20px;
  border-left: 4px solid #C74423;
}

.values h3 {
  color: #C74423;
  margin-bottom: 20px;
}

/* ========================================
   TEAM GRID
   ======================================== */

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

.team-member {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 68, 35, 0.15);
}

.team-member h3 {
  color: #C74423;
  font-size: 24px;
  margin-bottom: 8px;
}

.role {
  font-family: 'Oswald', sans-serif;
  color: #F39C12;
  font-weight: 600;
  margin-bottom: 12px;
}

.specialty,
.credentials {
  color: #2C3E50;
  font-size: 14px;
}

/* ========================================
   EVENTS
   ======================================== */

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.event-featured-card,
.event-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-featured-card:hover,
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 68, 35, 0.15);
}

.event-date {
  font-family: 'Oswald', sans-serif;
  color: #F39C12;
  font-weight: 600;
  font-size: 16px;
}

.event-location {
  color: #2C3E50;
  font-size: 14px;
}

.event-price {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #C74423;
  font-weight: 700;
  margin: 12px 0;
}

.spots {
  color: #F39C12;
  font-weight: 600;
  font-size: 14px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

/* ========================================
   BLOG & ARTICLES
   ======================================== */

.featured-article {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  position: relative;
}

.featured-article h2 {
  color: #C74423;
  font-size: 32px;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 18px;
  color: #2C3E50;
  margin: 20px 0;
  line-height: 1.8;
}

.meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
  font-size: 14px;
  color: #2C3E50;
}

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

.category {
  display: inline-block;
  background-color: #FFE8D6;
  color: #C74423;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.read-time,
.date,
.author {
  color: #2C3E50;
  font-weight: 500;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods {
  margin: 60px 0;
}

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

.method-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
}

.contact-form-section {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin: 60px 0;
}

.form-notice {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  border-left: 4px solid #F39C12;
}

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

.form-notice strong {
  color: #C74423;
}

.address-block {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.address-block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.address-block h3 {
  color: #C74423;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-quick {
  margin: 60px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(199, 68, 35, 0.15);
}

.faq-item h3 {
  color: #C74423;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-hero {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: #C74423;
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.confirmation-hero {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: #F39C12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 40px;
  height: 40px;
}

.next-steps,
.while-waiting {
  margin: 60px 0;
}

.testimonial {
  margin: 60px 0;
}

.social-proof {
  margin: 60px 0;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-col h4 {
  color: #F39C12;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col p {
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #FFFFFF;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #F39C12;
  opacity: 1;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 0;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

.cookie-consent-content {
  flex: 1 1 300px;
}

.cookie-consent-content p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.cookie-consent-content a {
  color: #F39C12;
  text-decoration: underline;
}

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

.cookie-consent-actions button {
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

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

.cookie-accept-all:hover {
  background-color: #FDB537;
  border-color: #FDB537;
}

.cookie-reject-all {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-reject-all:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #F39C12;
  border-color: #F39C12;
}

.cookie-settings:hover {
  background-color: rgba(243, 156, 18, 0.1);
}

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

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #C74423;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #C74423;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #FFF8F3;
  border-radius: 12px;
  border-left: 4px solid #F39C12;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #F39C12;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ========================================
   SECTION STYLING
   ======================================== */

.section-subheadline {
  font-size: 18px;
  color: #F39C12;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition,
.services-overview,
.process,
.featured-events,
.workshop-formats,
.instructors,
.community-benefits,
.membership-tiers,
.upcoming-events,
.blog-grid,
.categories,
.helpful-links {
  margin: 60px 0;
  padding: 40px 20px;
}

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

.services-overview .service-cards {
  margin-bottom: 40px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 20px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .stats-inline {
    flex-direction: column;
    gap: 16px;
  }
  
  .benefit-card,
  .service-card,
  .tier-card,
  .link-card,
  .method-card,
  .format-card,
  .instructor-card,
  .article-card,
  .category-card,
  .step,
  .step-card,
  .suggestion-card,
  .event-featured-card {
    flex: 1 1 100%;
  }
  
  .tier-card.featured {
    transform: scale(1);
  }
  
  .two-column {
    flex-direction: column;
  }
  
  .column {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
  
  .team-member {
    flex: 1 1 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
  }
  
  .cookie-consent-actions button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-buttons {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  .container {
    max-width: 100%;
  }
}