/* ==========================================================================
   VINTAGE RETRO DESIGN SYSTEM - Nebulus Dynamo
   ========================================================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2d1b00;
  background-color: #f5e6d3;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
  overflow-x: hidden;
}

/* Vintage Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Courier+Prime:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #8b4513;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  border-bottom: 4px double #8b4513;
  padding-bottom: 16px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
}

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

a {
  color: #8b4513;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: #d2691e;
  border-bottom-color: #d2691e;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Retro Buttons */
.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid #8b4513;
  background-color: #d2691e;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
  background-color: #8b4513;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
  border-bottom-color: #8b4513;
}

.btn-secondary {
  background-color: #f5e6d3;
  color: #8b4513;
  border: 3px solid #8b4513;
}

.btn-secondary:hover {
  background-color: #8b4513;
  color: #f5e6d3;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

.btn-text {
  background: none;
  border: none;
  box-shadow: none;
  padding: 8px 0;
  color: #8b4513;
}

.btn-text:hover {
  transform: translateX(5px);
  box-shadow: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #d2691e;
  color: #fff;
  border: 3px solid #8b4513;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
  font-family: 'Courier Prime', monospace;
}

.mobile-menu-toggle:hover {
  background-color: #8b4513;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #f5e6d3;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 69, 19, 0.05) 10px, rgba(139, 69, 19, 0.05) 20px);
  border-left: 5px solid #8b4513;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #d2691e;
  color: #fff;
  border: 3px solid #8b4513;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
  font-family: 'Courier Prime', monospace;
}

.mobile-menu-close:hover {
  background-color: #8b4513;
}

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

.mobile-nav a {
  padding: 16px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #8b4513;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid #8b4513;
  background-color: rgba(210, 105, 30, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background-color: #d2691e;
  color: #fff;
  transform: translateX(5px);
}

/* Header */
header {
  background-color: #f5e6d3;
  border-bottom: 5px double #8b4513;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(139, 69, 19, 0.2);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: sepia(0.3) contrast(1.2);
}

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

.nav-menu li a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b4513;
  padding: 8px 0;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #d2691e;
  transition: width 0.3s ease;
}

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

.nav-cta {
  margin-left: 16px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
  padding: 80px 20px;
  border-bottom: 5px double #8b4513;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b4513' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #8b4513;
  text-shadow: 4px 4px 0px rgba(210, 105, 30, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #5d3a1a;
  font-family: 'Courier Prime', monospace;
}

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

.trust-badge {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #8b4513;
  font-size: 16px;
  padding: 12px 24px;
  border: 2px dashed #8b4513;
  display: inline-block;
  background-color: rgba(245, 230, 211, 0.8);
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5d3a1a;
  margin-bottom: 48px;
  font-family: 'Courier Prime', monospace;
}

/* Benefits Grid */
.benefits {
  background-color: #fff;
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

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

.benefit-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 250px;
  padding: 32px 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px dashed #d2691e;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #8b4513;
}

.benefit-card p {
  color: #5d3a1a;
  margin-bottom: 0;
}

/* Services Preview */
.services-preview {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px dashed rgba(139, 69, 19, 0.3);
  pointer-events: none;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px rgba(139, 69, 19, 0.3);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #8b4513;
}

.service-card p {
  margin-bottom: 24px;
  color: #5d3a1a;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f5e6d3;
  border: 2px dashed #8b4513;
}

.service-meta .price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: #d2691e;
}

.service-meta .duration {
  font-family: 'Courier Prime', monospace;
  color: #8b4513;
  font-size: 14px;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* Process Steps */
.process {
  background-color: #fff;
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  position: relative;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 54px;
  background-color: #d2691e;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  border: 3px solid #8b4513;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.step h3 {
  margin-bottom: 16px;
  color: #8b4513;
}

.step p {
  color: #5d3a1a;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  color: rgba(210, 105, 30, 0.2);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card .quote {
  font-family: 'Courier Prime', monospace;
  font-size: 16px;
  color: #2d1b00;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px dashed #8b4513;
}

.testimonial-card .author strong {
  font-family: 'Playfair Display', serif;
  color: #8b4513;
  font-size: 18px;
}

.testimonial-card .author span {
  color: #5d3a1a;
  font-size: 14px;
}

.rating-display {
  text-align: center;
  font-size: 18px;
  color: #d2691e;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

/* Stats Section */
.stats {
  background-color: #8b4513;
  color: #f5e6d3;
  border-top: 5px solid #5d3a1a;
  border-bottom: 5px solid #5d3a1a;
}

.stats h2 {
  color: #f5e6d3;
}

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

.stat-item {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background-color: rgba(245, 230, 211, 0.1);
  border: 3px solid #f5e6d3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: #d2691e;
  line-height: 1;
}

.stat-label {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5e6d3;
}

/* CTA Banner */
.cta-banner {
  background-color: #d2691e;
  color: #f5e6d3;
  text-align: center;
  padding: 80px 20px;
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

.cta-banner h2 {
  color: #f5e6d3;
  margin-bottom: 24px;
  border-bottom-color: #f5e6d3;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner .btn-primary {
  background-color: #f5e6d3;
  color: #8b4513;
  border-color: #8b4513;
}

.cta-banner .btn-secondary {
  background-color: transparent;
  color: #f5e6d3;
  border-color: #f5e6d3;
}

.trust-note {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* Location Section */
.location {
  background-color: #fff;
  border-top: 5px double #8b4513;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.location-info {
  padding: 32px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.location-info .address {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #8b4513;
  margin-bottom: 16px;
}

/* Footer */
footer {
  background-color: #5d3a1a;
  color: #f5e6d3;
  padding: 60px 20px 24px;
  border-top: 5px double #8b4513;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(1.2) sepia(0.3);
}

footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f5e6d3;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #d2691e;
  padding-bottom: 8px;
}

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

footer a {
  color: #e6d5c3;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: #d2691e;
  border-bottom-color: #d2691e;
  padding-left: 5px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px dashed rgba(245, 230, 211, 0.3);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
  padding: 60px 20px 40px;
  border-bottom: 5px double #8b4513;
}

.breadcrumb {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  margin-bottom: 24px;
  color: #5d3a1a;
}

.breadcrumb a {
  color: #8b4513;
}

.breadcrumb span {
  color: #d2691e;
  font-weight: 700;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #5d3a1a;
  max-width: 800px;
  margin: 0 auto;
}

/* Courses Section */
.courses {
  background-color: #fff;
}

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

.course-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  padding: 32px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px rgba(139, 69, 19, 0.3);
}

.course-card.premium {
  background: linear-gradient(135deg, #f5e6d3 0%, #ffd700 100%);
  border-width: 5px;
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #d2691e;
  color: #fff;
  padding: 6px 16px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #8b4513;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

.badge.premium {
  background-color: #ffd700;
  color: #8b4513;
}

.course-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px dashed #8b4513;
}

.course-highlights li {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  color: #5d3a1a;
  padding-left: 24px;
  position: relative;
}

.course-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d2691e;
  font-weight: 700;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #fff;
  border: 3px solid #8b4513;
  margin-top: auto;
}

/* Learning Outcomes */
.learning-outcomes {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

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

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #8b4513;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
  font-family: 'Courier Prime', monospace;
  color: #2d1b00;
}

.outcomes-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: sepia(0.5) hue-rotate(-10deg);
}

/* Certification */
.certification {
  background-color: #fff;
  text-align: center;
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

.certification p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #5d3a1a;
}

/* Story Section */
.story {
  background-color: #fff;
}

.story p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.8;
  color: #5d3a1a;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
}

.milestone {
  flex: 1 1 calc(20% - 32px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.2);
  position: relative;
}

.milestone .year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: #d2691e;
  margin-bottom: 16px;
}

.milestone h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.milestone p {
  font-size: 14px;
  margin: 0;
}

/* Mission Vision */
.mission-vision {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

.mv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mv-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 40px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
}

.mv-card h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.values {
  margin-top: 48px;
}

.values h2 {
  text-align: center;
  width: 100%;
}

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.2);
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  margin: 0;
}

/* Methodology */
.methodology {
  background-color: #fff;
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 28px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
}

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

.method-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 14px;
  margin: 0;
}

/* Credentials */
.credentials {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

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

.credential-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px 24px;
  background-color: #fff;
  border: 3px solid #8b4513;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.credential-item img {
  width: 60px;
  height: 60px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.credential-item h3 {
  font-size: 16px;
  margin: 0;
}

/* Facilities */
.facilities {
  background-color: #fff;
  border-top: 5px double #8b4513;
}

.facilities-list {
  max-width: 700px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.facilities-list li {
  padding: 16px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  border-left-width: 6px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
  font-family: 'Courier Prime', monospace;
  color: #2d1b00;
}

.location-note {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #8b4513;
  font-size: 16px;
  margin-top: 32px;
}

/* Featured Story */
.featured-story {
  background: linear-gradient(135deg, #fff 0%, #f5e6d3 100%);
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

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

.large-quote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: #8b4513;
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 32px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  border-left-width: 8px;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  position: relative;
}

.large-quote::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 100px;
  color: rgba(210, 105, 30, 0.2);
  line-height: 1;
}

.participant-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #8b4513;
}

.participant-info strong {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #8b4513;
}

.participant-info p {
  margin: 0;
  color: #5d3a1a;
}

.story-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-section {
  padding: 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.2);
}

.story-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #d2691e;
}

.story-section p {
  margin: 0;
  color: #2d1b00;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
  background-color: #fff;
}

.course-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: #d2691e;
  margin-top: 8px;
  font-style: italic;
}

/* Career Impact */
.career-impact {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.impact-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.impact-item .percentage {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: #d2691e;
  margin-bottom: 16px;
  line-height: 1;
}

.impact-item p {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  color: #5d3a1a;
  margin: 0;
}

/* Ratings */
.ratings {
  background-color: #fff;
}

.overall-rating {
  text-align: center;
  margin-bottom: 48px;
  padding: 40px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
}

.rating-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: #d2691e;
  margin-bottom: 16px;
}

.stars {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.overall-rating p {
  margin: 0;
  color: #5d3a1a;
}

.reviews-sample {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.review {
  padding: 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.review-header strong {
  font-family: 'Playfair Display', serif;
  color: #8b4513;
}

.review-header .date {
  font-size: 13px;
  color: #5d3a1a;
}

.review-header .stars {
  font-size: 16px;
  margin: 0;
}

.review p {
  margin: 0;
  color: #2d1b00;
}

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

.stats-preview span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #8b4513;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #8b4513;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
}

/* Resource Categories */
.resource-categories {
  background-color: #fff;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.category-card img {
  width: 60px;
  height: 60px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.category-card h3 {
  font-size: 18px;
  margin: 0;
}

.category-card p {
  font-size: 14px;
  margin: 0;
  color: #5d3a1a;
}

/* Featured Resources */
.featured-resources {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card h3 {
  margin: 0;
}

.resource-card p {
  margin: 0;
  flex-grow: 1;
}

.format-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #d2691e;
  color: #fff;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  border: 2px solid #8b4513;
  align-self: flex-start;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
  border-top: 5px double #8b4513;
}

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

.blog-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 28px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

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

.blog-card .category {
  display: inline-block;
  padding: 4px 12px;
  background-color: #d2691e;
  color: #fff;
  font-size: 11px;
  font-family: 'Courier Prime', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #8b4513;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 18px;
  margin: 0;
}

.blog-card p {
  margin: 0;
  color: #5d3a1a;
  flex-grow: 1;
}

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8b4513;
  border-top: 2px dashed #8b4513;
  padding-top: 12px;
  margin-top: 8px;
}

/* Downloadable Guides */
.downloadable-guides {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

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

.guide-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.guide-item h3 {
  margin: 0;
}

.guide-item p {
  margin: 0;
  flex-grow: 1;
}

/* Video Library */
.video-library {
  background-color: #fff;
  border-top: 5px double #8b4513;
}

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

.video-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  overflow: hidden;
}

.video-thumbnail {
  height: 180px;
  background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumbnail .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  font-family: 'Courier Prime', monospace;
  border: 2px solid #fff;
}

.video-card h3 {
  padding: 20px 20px 12px;
  margin: 0;
  font-size: 18px;
}

.video-card p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
  color: #5d3a1a;
}

/* Newsletter Signup */
.newsletter-signup {
  background-color: #8b4513;
  color: #f5e6d3;
  text-align: center;
  border-top: 5px solid #5d3a1a;
  border-bottom: 5px solid #5d3a1a;
}

.newsletter-signup h2 {
  color: #f5e6d3;
}

.newsletter-signup p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.benefits-list {
  max-width: 500px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.benefits-list li {
  padding: 12px;
  background-color: rgba(245, 230, 211, 0.1);
  border: 2px solid #f5e6d3;
  color: #f5e6d3;
  font-family: 'Courier Prime', monospace;
}

.newsletter-form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: rgba(245, 230, 211, 0.1);
  border: 3px solid #f5e6d3;
}

.newsletter-form-placeholder .note {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 8px;
}

.newsletter-form-placeholder .subscriber-count {
  font-family: 'Playfair Display', serif;
  color: #d2691e;
  font-weight: 700;
  margin: 0;
}

/* Contact Options */
.contact-options {
  background-color: #fff;
}

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

.option-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  padding: 32px 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.option-card img {
  width: 60px;
  height: 60px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.option-card h3 {
  font-size: 18px;
  margin: 0;
}

.option-card p {
  margin: 0;
  font-size: 14px;
}

.option-card strong {
  color: #d2691e;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

.contact-form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
}

.contact-form-placeholder p {
  margin-bottom: 24px;
  color: #5d3a1a;
}

/* Contact Info */
.contact-info {
  background-color: #fff;
  border-top: 5px double #8b4513;
}

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

.info-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.info-block h3 {
  margin-bottom: 16px;
  color: #8b4513;
}

.info-block p {
  margin: 0;
  line-height: 1.8;
  color: #2d1b00;
}

.info-block strong {
  color: #d2691e;
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
  border: 5px solid #8b4513;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
}

.map-placeholder p {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

.directions {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

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

.directions p {
  margin-bottom: 16px;
  color: #2d1b00;
}

.directions strong {
  color: #8b4513;
}

/* Office Hours */
.office-hours {
  background-color: #fff;
  border-top: 5px double #8b4513;
  text-align: center;
}

.hours-list {
  max-width: 500px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-list li {
  padding: 16px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
  display: flex;
  justify-content: space-between;
  font-family: 'Courier Prime', monospace;
}

.hours-list strong {
  color: #8b4513;
}

.office-hours .note {
  font-style: italic;
  color: #5d3a1a;
}

/* Legal Page */
.legal-page {
  background-color: #fff;
  padding: 60px 20px;
}

.legal-page .subtitle {
  font-size: 18px;
  color: #5d3a1a;
  margin-bottom: 16px;
  font-family: 'Courier Prime', monospace;
}

.last-updated {
  font-size: 14px;
  color: #8b4513;
  font-style: italic;
  margin-bottom: 32px;
  padding: 12px;
  background-color: #f5e6d3;
  border-left: 4px solid #d2691e;
  display: inline-block;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #8b4513;
  border-bottom-width: 3px;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #8b4513;
}

.legal-content p {
  margin-bottom: 16px;
  color: #2d1b00;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: #2d1b00;
}

.legal-content li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #d2691e;
  font-size: 20px;
}

.legal-content a {
  color: #d2691e;
  text-decoration: underline;
}

.legal-content strong {
  color: #8b4513;
}

.contact-privacy {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.contact-privacy h3 {
  margin-top: 0;
}

.data-request-section {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.data-request-section h2 {
  margin-top: 0;
}

.data-request-section .note {
  font-size: 13px;
  font-style: italic;
  color: #5d3a1a;
  margin-top: 16px;
}

.cookie-settings-section {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.toggle-item {
  padding: 20px;
  background-color: #fff;
  border: 3px solid #8b4513;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toggle-item strong {
  color: #8b4513;
  font-size: 16px;
}

.toggle-item p {
  margin: 0;
  font-size: 14px;
  color: #5d3a1a;
}

.always-on {
  color: #d2691e;
  font-size: 14px;
  font-style: italic;
}

.cookie-settings-section .note {
  margin-top: 24px;
  font-style: italic;
  color: #5d3a1a;
  text-align: center;
}

.cancellation-policy-highlight {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background-color: #f5e6d3;
  border: 4px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.cancellation-policy-highlight h2 {
  margin-top: 0;
  text-align: center;
}

.cancellation-policy-highlight ul {
  margin: 24px 0;
  padding: 0;
}

.cancellation-policy-highlight li {
  padding: 16px;
  background-color: #fff;
  border: 3px solid #8b4513;
  margin-bottom: 12px;
  font-family: 'Courier Prime', monospace;
}

.cancellation-policy-highlight p {
  text-align: center;
  margin-top: 24px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px double #8b4513;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background-color: #d2691e;
  color: #fff;
  font-size: 64px;
  margin: 0 auto 32px;
  border: 5px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.3);
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
  color: #5d3a1a;
}

.confirmation-note {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  color: #8b4513;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px dashed #8b4513;
  display: inline-block;
}

/* Next Steps */
.next-steps {
  background-color: #fff;
  border-bottom: 5px double #8b4513;
}

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

.step-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background-color: #f5e6d3;
  border: 3px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.step-item .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 54px;
  background-color: #d2691e;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  border: 3px solid #8b4513;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.step-item p {
  margin: 0;
  color: #2d1b00;
}

/* While You Wait */
.while-you-wait {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

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

.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #fff;
  border: 4px solid #8b4513;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.suggestion-card h3 {
  margin: 0;
}

.suggestion-card p {
  margin: 0;
  flex-grow: 1;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-links span {
  padding: 8px 16px;
  background-color: #d2691e;
  color: #fff;
  border: 2px solid #8b4513;
  font-size: 12px;
  font-family: 'Courier Prime', monospace;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #fff;
  border-top: 5px double #8b4513;
}

.testimonial-section .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-section .rating {
  font-size: 24px;
  text-align: center;
  margin-top: 16px;
}

/* Contact Alternatives */
.contact-alternatives {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #fff;
  border: 3px solid #8b4513;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-method img {
  width: 60px;
  height: 60px;
  filter: sepia(0.5) hue-rotate(-10deg);
}

.contact-method p {
  margin: 0;
  line-height: 1.8;
}

/* Urgent Note */
.urgent-note {
  background-color: #d2691e;
  color: #f5e6d3;
  text-align: center;
  padding: 60px 20px;
  border-top: 5px solid #8b4513;
  border-bottom: 5px solid #8b4513;
}

.urgent-note h2 {
  color: #f5e6d3;
  margin-bottom: 16px;
}

.urgent-note p {
  margin-bottom: 8px;
}

.phone-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin: 24px 0;
}

.urgent-note .note {
  font-size: 14px;
  font-style: italic;
}

/* Thank You Page Simple */
.thank-you-page {
  background: linear-gradient(135deg, #f5e6d3 0%, #e6d5c3 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.success-message {
  text-align: center;
  max-width: 600px;
  padding: 48px;
  background-color: #fff;
  border: 5px solid #8b4513;
  box-shadow: 10px 10px 0px rgba(139, 69, 19, 0.3);
}

.success-message .success-icon {
  margin-bottom: 32px;
}

.success-message h1 {
  margin-bottom: 24px;
}

.success-message p {
  margin-bottom: 32px;
  font-size: 18px;
  color: #5d3a1a;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #5d3a1a;
  color: #f5e6d3;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 5px solid #8b4513;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 auto;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #f5e6d3;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#accept-all-cookies {
  background-color: #d2691e;
  color: #fff;
}

#accept-all-cookies:hover {
  background-color: #8b4513;
}

#reject-all-cookies,
#cookie-settings-btn {
  background-color: transparent;
  color: #f5e6d3;
}

#reject-all-cookies:hover,
#cookie-settings-btn:hover {
  background-color: rgba(245, 230, 211, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #f5e6d3;
  border: 5px solid #8b4513;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 10px 10px 0px rgba(139, 69, 19, 0.5);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #d2691e;
  color: #fff;
  border: 3px solid #8b4513;
  padding: 8px 16px;
  font-size: 20px;
  cursor: pointer;
  font-family: 'Courier Prime', monospace;
}

.cookie-modal-close:hover {
  background-color: #8b4513;
}

.cookie-modal-content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: #8b4513;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #fff;
  border: 3px solid #8b4513;
}

.cookie-category h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #8b4513;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: #5d3a1a;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 16px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #8b4513;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

#save-cookie-preferences {
  background-color: #d2691e;
  color: #fff;
}

#save-cookie-preferences:hover {
  background-color: #8b4513;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card,
  .service-card,
  .course-card,
  .step,
  .testimonial-card,
  .stat-item,
  .category-card,
  .resource-card,
  .blog-card,
  .guide-item,
  .video-card,
  .option-card,
  .info-block,
  .method-card,
  .credential-item,
  .value-item,
  .milestone,
  .mv-card,
  .impact-item,
  .suggestion-card,
  .contact-method,
  .step-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .large-quote {
    font-size: 20px;
    padding: 24px;
  }

  .cta-buttons,
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent-buttons button {
    width: 100%;
  }

  .stats-preview {
    flex-direction: column;
  }

  .rating-number {
    font-size: 48px;
  }

  .phone-highlight {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 40px 16px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal,
  .nav-cta,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
    color: black;
  }
}

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

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

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 3px solid #d2691e;
  outline-offset: 2px;
}

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  body {
    background-color: #fff;
  }

  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
}