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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2D4059;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2D4059;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
}

/* ===== SCANDINAVIAN CLEAN DESIGN VARIABLES ===== */
:root {
  --primary-color: #A33820;
  --secondary-color: #2D4059;
  --accent-color: #F5E6D3;
  --text-dark: #2D4059;
  --text-light: #5A6F88;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-light: #E5E5E5;
  --shadow-sm: 0 2px 8px rgba(45, 64, 89, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 64, 89, 0.12);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
}

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

/* ===== HEADER ===== */
header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -4px 0 16px rgba(45, 64, 89, 0.2);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: var(--text-dark);
  border: none;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  background-color: var(--accent-color);
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #8A2F1A;
  border-color: #8A2F1A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: white;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background-color: var(--accent-color);
  padding: 48px 20px;
  margin-bottom: 60px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.benefit-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

/* ===== SERVICE SHOWCASE ===== */
.services-showcase {
  background-color: var(--bg-white);
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--bg-light);
  padding: 32px;
  flex: 1 1 320px;
  max-width: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  border: 2px solid var(--primary-color);
  background-color: var(--bg-white);
}

.service-card h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 16px;
  margin-bottom: 16px;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary-color);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== TRANSFORMATION PROCESS ===== */
.transformation-process {
  background-color: var(--accent-color);
}

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

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

.step {
  background-color: var(--bg-white);
  padding: 32px 24px;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  text-align: center;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 400px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 32px 0;
  margin: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-bar span {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== IDEAL CLIENT ===== */
.ideal-client h2 {
  text-align: center;
  margin-bottom: 40px;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.audience-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  flex: 1 1 240px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--accent-color);
}

.audience-card h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

/* ===== URGENCY CTA ===== */
.urgency-cta {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--text-dark) 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.urgency-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.urgency-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.urgency-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TRUST INDICATORS ===== */
.trust-indicators {
  background-color: var(--bg-white);
}

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

.trust-item {
  flex: 1 1 280px;
  text-align: center;
}

.trust-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* ===== COURSES PAGE ===== */
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.course-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 340px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.course-card.featured {
  border: 2px solid var(--primary-color);
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.course-details span {
  font-size: 14px;
  color: var(--text-light);
}

.course-highlights {
  margin-top: 16px;
  margin-bottom: 16px;
}

.course-highlights li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  padding-left: 8px;
}

.course-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 16px;
  margin-bottom: 16px;
}

.learning-outcomes {
  background-color: var(--accent-color);
  text-align: center;
}

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

.outcomes-list li {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-left: 8px;
}

.guarantee {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: var(--bg-white);
}

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

.faq-item {
  background-color: var(--bg-light);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

.contact-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

.contact-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== ENROLLMENT CTA ===== */
.enrollment-cta {
  background-color: var(--accent-color);
  text-align: center;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.trust-signals span {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ABOUT PAGE ===== */
.origin-story {
  background-color: var(--bg-white);
}

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

.text-section p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.8;
}

.text-section blockquote {
  background-color: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
}

.mission-statement {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 32px;
}

.philosophy {
  background-color: var(--accent-color);
}

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  background-color: var(--bg-white);
  padding: 32px 24px;
  flex: 1 1 240px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.pillar p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

.credentials {
  background-color: var(--bg-white);
  text-align: center;
}

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

.stats-highlight span {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.values-list {
  max-width: 700px;
  margin: 32px auto;
}

.values-list li {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-left: 8px;
}

.values-list strong {
  color: var(--primary-color);
  font-weight: 700;
}

.location {
  background-color: var(--bg-white);
}

.closing-cta {
  background-color: var(--accent-color);
  text-align: center;
}

/* ===== SUCCESS STORIES PAGE ===== */
.featured-story {
  background-color: var(--bg-white);
}

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

.subject-info {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.story-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-content blockquote {
  background-color: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
}

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

.story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.story-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 320px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.story-card h3 {
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.story-card .title {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.story-card p {
  color: var(--text-dark);
  font-size: 14px;
}

.course-taken {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.metrics-showcase {
  background-color: var(--accent-color);
  text-align: center;
}

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

.metric {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 24px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.metric h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.source-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 32px;
}

.before-after-quotes {
  background-color: var(--bg-white);
}

.quote-pairs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-pair {
  background-color: var(--bg-light);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.quote-pair .before {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.quote-pair .after {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.quote-pair .attribution {
  color: var(--text-light);
  font-size: 12px;
  font-style: italic;
  margin-bottom: 0;
}

.your-story-cta {
  background-color: var(--accent-color);
  text-align: center;
}

/* ===== RESOURCES PAGE ===== */
.featured-resources h2 {
  text-align: center;
  margin-bottom: 40px;
}

.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.resource-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 300px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-card h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.resource-card p {
  color: var(--text-light);
  font-size: 14px;
  flex-grow: 1;
}

.guides-library {
  background-color: var(--accent-color);
}

.guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.guide-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 280px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-card h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.guide-card p {
  color: var(--text-light);
  font-size: 14px;
  flex-grow: 1;
}

.templates-section {
  background-color: var(--bg-white);
}

.template-list {
  max-width: 700px;
  margin: 32px auto;
}

.template-list li {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-left: 8px;
}

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

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.video-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 260px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-card h3 {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 8px;
}

.video-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

.newsletter-signup {
  background-color: var(--accent-color);
  text-align: center;
}

.signup-form {
  max-width: 500px;
  margin: 32px auto;
  padding: 32px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.privacy-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 24px;
}

.course-preview-cta {
  background-color: var(--bg-white);
  text-align: center;
}

/* ===== CONTACT PAGE ===== */
.contact-options h2 {
  text-align: center;
  margin-bottom: 40px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.option-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 300px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-card h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.option-card p {
  color: var(--text-light);
  font-size: 14px;
  flex-grow: 1;
}

.contact-form-section {
  background-color: var(--accent-color);
}

.form-container {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.form-container p {
  margin-bottom: 16px;
  font-size: 14px;
}

.form-container strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.response-time {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 24px;
}

.office-information {
  background-color: var(--bg-white);
}

.office-details {
  max-width: 600px;
  margin: 32px auto;
}

.office-details p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.faq-quick-answers {
  background-color: var(--accent-color);
}

.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.response-commitment {
  background-color: var(--bg-white);
  text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  background-color: var(--bg-white);
}

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

.content-wrapper h2 {
  color: var(--secondary-color);
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-wrapper li {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.next-steps {
  background-color: var(--bg-white);
}

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

.while-you-wait {
  background-color: var(--accent-color);
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.suggestion-card {
  background-color: var(--bg-white);
  padding: 32px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.9);
  padding: 48px 20px 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-column h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 16px rgba(45, 64, 89, 0.2);
  padding: 24px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: var(--text-dark);
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: white;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.cookie-btn-reject:hover {
  background-color: var(--text-dark);
  color: white;
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cookie-btn-settings:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 64, 89, 0.8);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: var(--bg-white);
  max-width: 600px;
  width: 100%;
  padding: 32px;
  box-shadow: var(--shadow-md);
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  color: var(--secondary-color);
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--primary-color);
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

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

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

.cookie-category h4 {
  color: var(--secondary-color);
  font-size: 16px;
  margin-bottom: 0;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-category .required {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 28px; }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  .hero-subheadline {
    font-size: 20px;
  }
  
  .benefit-cards {
    justify-content: space-between;
  }
  
  .service-grid {
    justify-content: space-between;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  h1 { font-size: 64px; }
  h2 { font-size: 48px; }
  
  .hero h1 {
    font-size: 72px;
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
  
  .course-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-grid {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

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

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

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

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ===== ACCESSIBILITY ===== */
.btn:focus,
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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