/* =================================================================
   TAVRA EDGE - PROFESSIONAL CORPORATE CSS
   Professional blue/gray palette with structured layout
   ================================================================= */

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a4d7a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #1a4d7a;
  transition: all 0.3s ease;
}

a:hover {
  color: #c8a05f;
}

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

li {
  margin-bottom: 8px;
  color: #4a5568;
}

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

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

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

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(26, 77, 122, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #c8a05f;
  font-style: italic;
  display: none;
}

.main-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: #2c3e50;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #1a4d7a;
  background-color: #f4f1ea;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #1a4d7a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2563a8;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 200;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  font-size: 24px;
  color: #2c3e50;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #fee;
  border-color: #ef4444;
  color: #ef4444;
}

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

.mobile-nav a {
  color: #2c3e50;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: #f4f1ea;
  color: #1a4d7a;
}

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

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-button.primary {
  background-color: #1a4d7a;
  color: #ffffff;
  border-color: #1a4d7a;
}

.cta-button.primary:hover {
  background-color: #2563a8;
  border-color: #2563a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: #1a4d7a;
  border-color: #1a4d7a;
}

.cta-button.secondary:hover {
  background-color: #1a4d7a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.2);
}

.cta-link {
  color: #c8a05f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  color: #1a4d7a;
  transform: translateX(4px);
}

.cta-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.cta-link:hover::after {
  transform: translateX(4px);
}

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #1a4d7a 0%, #2563a8 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(200, 160, 95, 0.1);
  transform: skewX(-15deg);
  transform-origin: top right;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.1;
}

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

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

.trust-indicator {
  font-size: 14px;
  color: #f4f1ea;
  font-weight: 500;
}

/* =================================================================
   PAGE HERO
   ================================================================= */

.page-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #1a4d7a 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

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

.page-hero p {
  color: #f4f1ea;
  font-size: 18px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #f4f1ea;
}

.breadcrumb a {
  color: #f4f1ea;
}

.breadcrumb a:hover {
  color: #c8a05f;
}

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

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

.section-subtitle {
  font-size: 18px;
  color: #718096;
  text-align: center;
  margin-bottom: 40px;
}

/* =================================================================
   SOCIAL PROOF / STATS
   ================================================================= */

.social-proof {
  background-color: #f8fafc;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a4d7a;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =================================================================
   SERVICES / COURSE CARDS
   ================================================================= */

.services-preview,
.courses-detailed {
  padding: 60px 20px;
}

.services-preview h2,
.courses-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid,
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
}

.service-card,
.course-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 77, 122, 0.15);
  border-color: #c8a05f;
}

.service-card h3,
.course-card h2 {
  color: #1a4d7a;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.course-card .course-description {
  color: #4a5568;
  margin-bottom: 20px;
  flex-grow: 1;
}

.price,
.course-price {
  font-size: 32px;
  font-weight: 700;
  color: #c8a05f;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 20px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.course-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

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

/* =================================================================
   BENEFITS
   ================================================================= */

.benefits {
  background-color: #f8fafc;
  padding: 60px 20px;
}

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

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  gap: 16px;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.benefit-item p {
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0;
}

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

.testimonials,
.testimonials-grid-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.testimonial-card {
  background-color: #f8fafc;
  border-left: 4px solid #c8a05f;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #1a4d7a;
  font-size: 14px;
  margin-bottom: 0;
}

/* Featured Testimonial */
.featured-testimonial {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.featured-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(26, 77, 122, 0.1);
}

.featured-quote {
  font-size: 24px;
  color: #2c3e50;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-name {
  font-weight: 700;
  color: #1a4d7a;
  font-size: 18px;
  margin-bottom: 4px;
}

.author-position,
.course-taken {
  color: #718096;
  font-size: 14px;
  margin-bottom: 0;
}

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

.methodology-preview,
.methodology-overview,
.process-steps {
  padding: 60px 20px;
}

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

.method-step,
.step-card {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.method-step:hover,
.step-card:hover {
  border-color: #c8a05f;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 160, 95, 0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a4d7a 0%, #2563a8 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.method-step h3,
.step-card h3 {
  color: #1a4d7a;
  margin-bottom: 12px;
  font-size: 20px;
}

.method-step p,
.step-card p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 0;
}

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

.mission-vision,
.philosophy {
  padding: 60px 20px;
  background-color: #f8fafc;
}

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

.mission-card,
.philosophy-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #c8a05f;
}

.mission-card:hover,
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 77, 122, 0.15);
}

.mission-card h3,
.philosophy-card h3 {
  color: #1a4d7a;
  margin-bottom: 16px;
}

.mission-card p,
.philosophy-card p {
  color: #4a5568;
  margin-bottom: 0;
}

.mission-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-card ul li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 24px;
}

.mission-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c8a05f;
  font-size: 20px;
  font-weight: 700;
}

/* =================================================================
   TECHNIQUES & ACHIEVEMENTS
   ================================================================= */

.techniques,
.achievements {
  padding: 60px 20px;
}

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

.technique-card,
.achievement-item {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.technique-card:hover,
.achievement-item:hover {
  background-color: #ffffff;
  border-color: #c8a05f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 160, 95, 0.2);
}

.achievement-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.technique-card h3 {
  color: #1a4d7a;
  font-size: 18px;
  margin-bottom: 12px;
}

.technique-card p,
.achievement-item p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 0;
}

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

.results,
.impact-stats {
  background: linear-gradient(135deg, #1a4d7a 0%, #2563a8 100%);
  color: #ffffff;
  padding: 60px 20px;
}

.results h2,
.impact-stats h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.result-stat,
.stat-card {
  text-align: center;
  min-width: 200px;
}

.result-stat .stat-number,
.stat-card .stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #c8a05f;
  display: block;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.result-stat p,
.stat-card p {
  color: #f4f1ea;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

/* =================================================================
   CAREER IMPACT
   ================================================================= */

.career-impact {
  padding: 60px 20px;
  background-color: #f8fafc;
}

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

.impact-card {
  background-color: #ffffff;
  border-left: 4px solid #c8a05f;
  border-radius: 4px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.impact-card p {
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0;
}

/* =================================================================
   STORY & TEXT SECTIONS
   ================================================================= */

.story,
.methodology-overview {
  padding: 60px 20px;
}

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

.text-section h2 {
  color: #1a4d7a;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

.text-section ul,
.text-section ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.text-section li {
  margin-bottom: 12px;
  line-height: 1.6;
}

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

.principle-card {
  background: linear-gradient(135deg, #1a4d7a 0%, #2563a8 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.2);
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.principle-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
}

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

.contact-info,
.contact-options {
  padding: 60px 20px;
  background-color: #f8fafc;
}

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

.contact-item,
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-card {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.contact-item:hover,
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 77, 122, 0.1);
}

.contact-item img,
.contact-card img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.contact-card h3 {
  color: #1a4d7a;
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-card .hours,
.contact-card .note {
  color: #718096;
  font-size: 14px;
  margin-top: 8px;
}

/* =================================================================
   CONTACT FORM
   ================================================================= */

.contact-form-section {
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1a4d7a;
  box-shadow: 0 0 0 3px rgba(26, 77, 122, 0.1);
}

.form-field input:disabled,
.form-field textarea:disabled {
  background-color: #f1f5f9;
  cursor: not-allowed;
  opacity: 0.6;
}

.form-note {
  font-size: 12px;
  color: #718096;
  margin-top: 16px;
}

.form-note a {
  color: #1a4d7a;
  text-decoration: underline;
}

/* =================================================================
   CONSULTATION CTA
   ================================================================= */

.consultation-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.consultation-cta h2 {
  margin-bottom: 16px;
}

.consultation-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 400px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #2c3e50;
  font-weight: 500;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c8a05f;
  font-weight: 700;
  font-size: 18px;
}

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

.cta-section {
  background: linear-gradient(135deg, #1a4d7a 0%, #2563a8 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

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

.cta-section p {
  color: #f4f1ea;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.urgency-text,
.trust-element {
  font-size: 14px;
  color: #f4f1ea;
  font-weight: 500;
  margin-top: 16px;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  color: #1a4d7a;
  margin-bottom: 24px;
}

.thank-you-subheadline {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 24px;
  line-height: 1.6;
}

.confirmation-text {
  font-size: 14px;
  color: #718096;
  margin-bottom: 32px;
}

.next-steps,
.while-you-wait,
.suggestions {
  padding: 60px 20px;
}

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

.suggestion-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 77, 122, 0.15);
  border-color: #c8a05f;
}

.suggestion-card h3 {
  color: #1a4d7a;
  font-size: 18px;
  margin-bottom: 8px;
}

.suggestion-card p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.contact-reminder {
  background-color: #f8fafc;
  padding: 40px 20px;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 16px;
}

.contact-reminder .contact-info {
  margin-top: 24px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  gap: 16px;
}

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

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

.legal-content .text-section {
  max-width: 900px;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.right-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border-left: 4px solid #c8a05f;
}

.right-card h3 {
  color: #1a4d7a;
  font-size: 18px;
  margin-bottom: 12px;
}

.right-card p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 0;
}

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

.site-footer {
  background-color: #2c3e50;
  color: #e2e8f0;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-column p {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #cbd5e0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #c8a05f;
}

.footer-bottom {
  border-top: 1px solid #475569;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: #cbd5e0;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: #cbd5e0;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #c8a05f;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 150;
  display: none;
  animation: slideUp 0.3s ease;
}

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

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

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

.cookie-banner-text {
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-banner-text p {
  color: #e2e8f0;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-banner-text a {
  color: #c8a05f;
  text-decoration: underline;
}

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

.cookie-banner-buttons .cta-button {
  padding: 8px 20px;
  font-size: 14px;
}

.cookie-settings-btn {
  background-color: transparent;
  color: #e2e8f0;
  border: 1px solid #e2e8f0;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #c8a05f;
  color: #c8a05f;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: #1a4d7a;
  font-size: 22px;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #718096;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #fee;
  color: #ef4444;
}

.cookie-modal-body {
  padding: 24px;
}

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

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

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

.cookie-category h4 {
  color: #2c3e50;
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #cbd5e0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #1a4d7a;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-modal-footer .cta-button {
  padding: 10px 24px;
  font-size: 14px;
}

/* =================================================================
   RESPONSIVE DESIGN - TABLET
   ================================================================= */

@media (min-width: 768px) {
  .tagline {
    display: inline;
  }

  .main-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

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

  .service-card,
  .course-card {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-bottom {
    flex-direction: row;
  }
}

/* =================================================================
   RESPONSIVE DESIGN - DESKTOP
   ================================================================= */

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

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

  .service-card,
  .course-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .benefit-item {
    flex: 1 1 calc(25% - 32px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }

  .method-step,
  .step-card {
    flex: 1 1 calc(25% - 32px);
  }

  .mission-card,
  .philosophy-card {
    flex: 1 1 calc(33.333% - 32px);
  }
}

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

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

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

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

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    gap: 24px;
  }

  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }

  .service-card,
  .course-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .benefits-grid {
    gap: 24px;
  }

  .benefit-item {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .method-steps,
  .steps-grid {
    gap: 24px;
  }

  .method-step,
  .step-card {
    flex: 1 1 100%;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-item,
  .contact-card {
    flex: 1 1 100%;
  }

  .footer-grid {
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .cookie-banner-buttons .cta-button,
  .cookie-settings-btn {
    width: 100%;
  }

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

  .cta-buttons .cta-button {
    width: 100%;
  }

  section {
    padding: 40px 16px;
  }

  .form-wrapper {
    padding: 24px;
  }
}

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

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

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

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

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

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

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

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

@media print {
  .site-header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-button,
  .cta-section,
  .cookie-banner,
  .cookie-modal,
  .site-footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}