/* ============================================
   RednBühne Academy - Vintage Retro Design
   Complete CSS Styles for All Pages
   ============================================ */

/* ============================================
   CSS RESET & NORMALIZE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #f5e6d3;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 99, 67, 0.03) 10px, rgba(139, 99, 67, 0.03) 20px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   VINTAGE RETRO TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #8b6343;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(199, 149, 61, 0.2);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  border-bottom: 4px double #c7953d;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

h2 {
  font-size: 32px;
  border-bottom: 3px solid #c7953d;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  color: #6d4c3a;
}

p {
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
  color: #6d4c3a;
}

blockquote {
  margin: 24px 0;
  padding: 20px 30px;
  background-color: #fff9f0;
  border-left: 6px solid #c7953d;
  font-style: italic;
  font-size: 18px;
  color: #6d4c3a;
  box-shadow: 3px 3px 0px rgba(139, 99, 67, 0.2);
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: #8b6343;
  background-image: linear-gradient(180deg, #8b6343 0%, #6d4c3a 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #c7953d;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #f5e6d3;
  font-family: 'Georgia', serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #c7953d;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #c7953d;
  background-color: rgba(245, 230, 211, 0.1);
}

.main-nav a:hover::after {
  width: 80%;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #8b6343;
  color: #f5e6d3;
  border: 3px solid #c7953d;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #6d4c3a;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #8b6343;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(199, 149, 61, 0.1) 10px, rgba(199, 149, 61, 0.1) 20px);
  border-left: 5px solid #c7953d;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #f5e6d3;
  border: 2px solid #c7953d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #c7953d;
  color: #8b6343;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #f5e6d3;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  background-color: rgba(245, 230, 211, 0.1);
  border: 2px solid #c7953d;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background-color: #c7953d;
  color: #8b6343;
  transform: translateX(5px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTONS & CTA
   ============================================ */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5e6d3;
  background-color: #c7953d;
  border: 3px solid #8b6343;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(139, 99, 67, 0.4);
  text-align: center;
}

.cta-button:hover {
  background-color: #b8863a;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 99, 67, 0.4);
}

.cta-button:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px rgba(139, 99, 67, 0.4);
}

.cta-button.primary {
  background-color: #c7953d;
  color: #2a2a2a;
  border-color: #8b6343;
}

.cta-button.secondary {
  background-color: #8b6343;
  color: #f5e6d3;
  border-color: #c7953d;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background-color: #fff9f0;
  background-image: radial-gradient(circle, rgba(199, 149, 61, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 80px 20px;
  border-top: 6px solid #c7953d;
  border-bottom: 6px double #8b6343;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, #c7953d 0px, #c7953d 10px, transparent 10px, transparent 20px);
}

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

.hero h1 {
  font-size: 56px;
  color: #8b6343;
  margin-bottom: 25px;
  text-shadow: 3px 3px 0px rgba(199, 149, 61, 0.3);
}

.hero-subtitle {
  font-size: 22px;
  color: #6d4c3a;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.badge {
  background-color: #8b6343;
  color: #f5e6d3;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #c7953d;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ERROR PAGE STYLES
   ============================================ */
.error-hero {
  background-color: #fff9f0;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 6px double #c7953d;
}

.error-code {
  font-size: 120px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #c7953d;
  text-shadow: 4px 4px 0px rgba(139, 99, 67, 0.3);
  margin-bottom: 20px;
  line-height: 1;
}

.error-message {
  font-size: 20px;
  color: #6d4c3a;
  max-width: 700px;
  margin: 0 auto;
}

.popular-pages {
  padding: 60px 20px;
  background-color: #f5e6d3;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.page-link {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 20px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 4px;
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  color: #8b6343;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.page-link:hover {
  background-color: #c7953d;
  color: #f5e6d3;
  transform: translateY(-4px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.help-section {
  padding: 60px 20px;
  background-color: #fff9f0;
  text-align: center;
  border-top: 4px double #8b6343;
  border-bottom: 4px double #8b6343;
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.quick-actions {
  padding: 60px 20px;
  background-color: #f5e6d3;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.action-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  padding: 30px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 6px;
  box-shadow: 4px 4px 0px rgba(139, 99, 67, 0.2);
}

.action-card h3 {
  margin-bottom: 15px;
  color: #8b6343;
}

.action-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #c7953d;
  color: #2a2a2a;
  border: 2px solid #8b6343;
  border-radius: 3px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-link:hover {
  background-color: #b8863a;
  transform: translateY(-2px);
}

/* ============================================
   CARD LAYOUTS
   ============================================ */
.service-grid,
.testimonial-grid,
.blog-grid,
.resource-grid,
.team-grid,
.stats-grid,
.metrics-grid,
.tools-grid,
.trust-grid,
.values-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.service-card,
.testimonial-card,
.blog-card,
.resource-card,
.team-member,
.stat-card,
.metric,
.tool,
.trust-item,
.value-card,
.option-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 30px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 6px;
  box-shadow: 4px 4px 0px rgba(139, 99, 67, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.blog-card:hover,
.resource-card:hover,
.tool:hover,
.value-card:hover,
.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 6px 6px 0px rgba(139, 99, 67, 0.3);
  border-color: #b8863a;
}

.service-card h3,
.blog-card h3,
.resource-card h3,
.value-card h3,
.option-card h3 {
  color: #8b6343;
  margin-bottom: 15px;
  font-size: 22px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #c7953d;
  font-family: 'Georgia', serif;
  margin: 15px 0;
  text-shadow: 2px 2px 0px rgba(139, 99, 67, 0.2);
}

.service-link,
.blog-link,
.resource-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #c7953d;
  color: #2a2a2a;
  border: 2px solid #8b6343;
  border-radius: 3px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-link:hover,
.blog-link:hover,
.resource-link:hover {
  background-color: #b8863a;
  transform: translateY(-2px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background-color: #fff9f0;
  padding: 60px 20px;
  border-top: 4px double #c7953d;
  border-bottom: 4px double #c7953d;
}

.testimonial-card {
  background-color: #f5e6d3;
  border: 3px solid #8b6343;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 4px 4px 0px rgba(139, 99, 67, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.author {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #6d4c3a;
  font-weight: 600;
  margin-top: 10px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  padding: 20px 30px;
  background-color: #8b6343;
  color: #f5e6d3;
  border: 3px solid #c7953d;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 25px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 6px;
  box-shadow: 3px 3px 0px rgba(139, 99, 67, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #c7953d;
  color: #2a2a2a;
  border: 3px solid #8b6343;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.step h3 {
  color: #8b6343;
  margin-bottom: 10px;
}

.step p {
  color: #6d4c3a;
  font-size: 15px;
}

/* ============================================
   SECTIONS WITH SPECIFIC STYLING
   ============================================ */
.problem-solution {
  background-color: #fff9f0;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px double #c7953d;
}

.problem-statement {
  font-size: 24px;
  color: #8b6343;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin: 30px 0;
}

.solution-statement {
  font-size: 26px;
  color: #c7953d;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin: 30px 0;
  text-shadow: 2px 2px 0px rgba(139, 99, 67, 0.2);
}

.pain-points,
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.pain-point,
.benefit {
  padding: 15px 25px;
  background-color: #f5e6d3;
  border: 2px solid #8b6343;
  border-radius: 25px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: #6d4c3a;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.benefit {
  background-color: #c7953d;
  color: #2a2a2a;
  border-color: #8b6343;
}

.methodology,
.approach,
.values,
.training-tools {
  background-color: #f5e6d3;
  padding: 60px 20px;
}

.methodology-intro,
.section-intro {
  text-align: center;
  font-size: 18px;
  color: #6d4c3a;
  margin-bottom: 30px;
  font-style: italic;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
  justify-content: space-between;
}

.pillar {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  padding: 30px;
  background-color: #fff9f0;
  border: 4px solid #c7953d;
  border-radius: 6px;
  box-shadow: 5px 5px 0px rgba(139, 99, 67, 0.3);
  text-align: center;
}

.pillar h3 {
  color: #c7953d;
  margin-bottom: 15px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pillar p {
  color: #6d4c3a;
  font-size: 16px;
}

/* ============================================
   DETAILED SERVICE SECTIONS
   ============================================ */
.services {
  background-color: #f5e6d3;
  padding: 40px 20px;
}

.service-detailed {
  background-color: #fff9f0;
  padding: 40px;
  margin-bottom: 40px;
  border: 4px solid #c7953d;
  border-radius: 6px;
  box-shadow: 5px 5px 0px rgba(139, 99, 67, 0.2);
}

.service-detailed h2 {
  color: #8b6343;
  margin-bottom: 20px;
}

.duration {
  font-size: 16px;
  color: #6d4c3a;
  font-style: italic;
  margin-bottom: 20px;
}

.service-detailed ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detailed li {
  margin-bottom: 10px;
  color: #6d4c3a;
  list-style-type: square;
}

/* ============================================
   STORY & MILESTONES
   ============================================ */
.story {
  background-color: #fff9f0;
  padding: 60px 20px;
  border-top: 4px double #c7953d;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.milestone {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  padding: 20px;
  background-color: #f5e6d3;
  border: 3px solid #8b6343;
  border-left: 6px solid #c7953d;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  color: #6d4c3a;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.milestone strong {
  color: #c7953d;
  font-size: 20px;
}

/* ============================================
   TECHNIQUES, MODULES, CONCEPTS
   ============================================ */
.techniques,
.modules,
.concepts,
.approach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.technique,
.module,
.concept,
.approach-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 25px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 6px;
  box-shadow: 3px 3px 0px rgba(139, 99, 67, 0.2);
}

.technique h3,
.module h3,
.concept h3,
.approach-item h3 {
  color: #8b6343;
  margin-bottom: 12px;
}

.technique p,
.module p,
.concept p,
.approach-item p {
  color: #6d4c3a;
}

/* ============================================
   FEATURED STORY
   ============================================ */
.featured-story {
  background-color: #fff9f0;
  padding: 60px 20px;
  border: 5px solid #c7953d;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 6px 6px 0px rgba(139, 99, 67, 0.3);
}

.featured-story h2 {
  color: #c7953d;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

.featured-story blockquote {
  font-size: 22px;
  margin-top: 30px;
}

/* ============================================
   RESULTS METRICS
   ============================================ */
.results-metrics {
  background-color: #f5e6d3;
  padding: 60px 20px;
  text-align: center;
}

.source {
  margin-top: 30px;
  font-style: italic;
  color: #6d4c3a;
  font-size: 14px;
}

/* ============================================
   RESOURCES SECTIONS
   ============================================ */
.featured-resources,
.guides,
.checklists {
  background-color: #fff9f0;
  padding: 60px 20px;
}

.guides ul,
.checklists ul {
  margin-top: 20px;
  padding-left: 30px;
}

.guides li,
.checklists li {
  margin-bottom: 15px;
  color: #6d4c3a;
  font-size: 18px;
  list-style-type: square;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background-color: #c7953d;
  padding: 60px 20px;
  text-align: center;
  border: 5px solid #8b6343;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.newsletter h2 {
  color: #2a2a2a;
  border-bottom: 3px solid #8b6343;
}

.newsletter p {
  color: #2a2a2a;
  font-size: 18px;
}

.privacy-note {
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-options,
.location-info,
.office-hours {
  background-color: #fff9f0;
  padding: 60px 20px;
}

.contact-details {
  padding: 30px;
  background-color: #f5e6d3;
  border: 3px solid #c7953d;
  border-radius: 6px;
  box-shadow: 4px 4px 0px rgba(139, 99, 67, 0.2);
}

.contact-details p {
  color: #6d4c3a;
  margin-bottom: 20px;
}

.contact-form-section {
  background-color: #f5e6d3;
  padding: 60px 20px;
}

.form-note {
  padding: 30px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 6px;
  box-shadow: 3px 3px 0px rgba(139, 99, 67, 0.2);
  margin-top: 30px;
}

.form-note a {
  color: #c7953d;
  text-decoration: underline;
  font-weight: 600;
}

.form-note a:hover {
  color: #b8863a;
}

/* ============================================
   TRUST ELEMENTS
   ============================================ */
.trust-elements {
  background-color: #fff9f0;
  padding: 60px 20px;
  border-top: 4px double #c7953d;
}

.rating {
  text-align: center;
  font-size: 20px;
  color: #c7953d;
  font-weight: 700;
  margin-top: 30px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background-color: #fff9f0;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 6px double #c7953d;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #c7953d;
  color: #2a2a2a;
  border: 5px solid #8b6343;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.confirmation-message {
  font-size: 22px;
  color: #6d4c3a;
  margin: 20px 0;
}

.email-confirmation {
  font-size: 16px;
  color: #8b6343;
  font-style: italic;
}

.next-steps,
.meanwhile,
.social-proof {
  padding: 60px 20px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.suggestion {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  padding: 30px;
  background-color: #fff9f0;
  border: 3px solid #c7953d;
  border-radius: 6px;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(139, 99, 67, 0.2);
}

.suggestion h3 {
  margin-bottom: 20px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background-color: #c7953d;
  padding: 80px 20px;
  text-align: center;
  border: 6px solid #8b6343;
  border-radius: 8px;
  margin: 60px 0;
  box-shadow: 8px 8px 0px rgba(139, 99, 67, 0.4);
}

.cta-section h2 {
  color: #2a2a2a;
  font-size: 42px;
  margin-bottom: 20px;
  border-bottom: 4px solid #8b6343;
}

.cta-section p {
  color: #2a2a2a;
  font-size: 20px;
  margin-bottom: 20px;
}

.guarantee {
  font-weight: 700;
  font-size: 18px;
  color: #8b6343;
  margin-top: 20px;
}

.custom-training {
  background-color: #8b6343;
  padding: 60px 20px;
  text-align: center;
  border-radius: 6px;
  margin-top: 40px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.custom-training h2 {
  color: #f5e6d3;
  border-bottom: 3px solid #c7953d;
}

.custom-training p {
  color: #f5e6d3;
  font-size: 18px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  background-color: #fff9f0;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  color: #8b6343;
  font-size: 42px;
  margin-bottom: 30px;
  border-bottom: 4px double #c7953d;
}

.legal-content h2 {
  color: #6d4c3a;
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #c7953d;
}

.legal-content p {
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #2a2a2a;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #8b6343;
  background-image: linear-gradient(180deg, #6d4c3a 0%, #4a3328 100%);
  color: #f5e6d3;
  padding: 60px 20px 30px;
  border-top: 6px solid #c7953d;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

.footer-column h3 {
  color: #c7953d;
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #c7953d;
  padding-bottom: 10px;
}

.footer-column p {
  color: #f5e6d3;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #f5e6d3;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-nav a:hover {
  color: #c7953d;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #c7953d;
  color: #f5e6d3;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #8b6343;
  background-image: linear-gradient(180deg, #6d4c3a 0%, #8b6343 100%);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  border-top: 4px solid #c7953d;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #f5e6d3;
  font-size: 15px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #c7953d;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.cookie-btn.accept {
  background-color: #c7953d;
  color: #2a2a2a;
}

.cookie-btn.reject {
  background-color: transparent;
  color: #f5e6d3;
}

.cookie-btn.settings {
  background-color: #6d4c3a;
  color: #f5e6d3;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 42, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #fff9f0;
  padding: 40px;
  border-radius: 8px;
  border: 5px solid #c7953d;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0px rgba(139, 99, 67, 0.4);
}

.cookie-modal h2 {
  color: #8b6343;
  margin-bottom: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #f5e6d3;
  border: 2px solid #c7953d;
  border-radius: 4px;
}

.cookie-category h3 {
  color: #6d4c3a;
  margin-bottom: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.cookie-toggle label {
  font-weight: 600;
  color: #6d4c3a;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 25px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 42px; }
  .hero-subtitle { font-size: 18px; }
  
  /* Hide desktop navigation */
  .main-nav { display: none; }
  .header-content .cta-button { display: none; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle { display: block; }
  
  /* Adjust header */
  header { padding: 15px 0; }
  .logo img { height: 40px; }
  
  /* Error code */
  .error-code { font-size: 80px; }
  
  /* Flexbox adjustments for mobile */
  .service-grid,
  .testimonial-grid,
  .blog-grid,
  .resource-grid,
  .team-grid,
  .stats-grid,
  .metrics-grid,
  .tools-grid,
  .trust-grid,
  .values-grid,
  .options-grid,
  .page-links,
  .action-grid {
    flex-direction: column;
  }
  
  .service-card,
  .testimonial-card,
  .blog-card,
  .resource-card,
  .team-member,
  .stat-card,
  .metric,
  .tool,
  .trust-item,
  .value-card,
  .option-card,
  .page-link,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pillars,
  .process-steps,
  .steps,
  .techniques,
  .modules,
  .concepts,
  .approach-list,
  .milestones {
    flex-direction: column;
  }
  
  .pillar,
  .step,
  .technique,
  .module,
  .concept,
  .approach-item,
  .milestone {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .hero-cta,
  .cta-buttons,
  .help-actions,
  .stats,
  .pain-points,
  .benefits,
  .trust-badges,
  .suggestions {
    flex-direction: column;
  }
  
  .footer-content { flex-direction: column; }
  .footer-column { flex: 1 1 100%; }
  
  .cookie-content { flex-direction: column; }
  .cookie-text { flex: 1 1 100%; }
  
  /* Sections padding */
  section { padding: 30px 15px; }
  .hero { padding: 50px 15px; }
  
  /* Cookie banner */
  .cookie-banner { padding: 15px; }
  .cookie-buttons { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .hero h1 { font-size: 32px; }
  .error-code { font-size: 60px; }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-detailed,
  .legal-content {
    padding: 25px 20px;
  }
  
  .cookie-modal-content {
    padding: 25px;
    width: 95%;
  }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.service-card,
.testimonial-card,
.blog-card,
.resource-card {
  animation: fadeIn 0.6s ease forwards;
}

.success-icon {
  animation: pulse 2s ease infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner { display: none; }
  body { background: white; color: black; }
  .container { max-width: 100%; }
}