/* CSS Reset and 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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

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

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

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

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

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

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #38B2AC;
}

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

li {
  margin-bottom: 8px;
}

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

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

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

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

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

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

.main-nav a {
  font-weight: 500;
  color: #2D3748;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #2C5282;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 150;
  background-color: #2C5282;
  color: white;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: right 0.4s ease;
  padding: 80px 24px 24px 24px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F6AD55;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px;
  color: #2D3748;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.mobile-nav a:hover {
  background-color: #FFF9F0;
  color: #2C5282;
  padding-left: 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 16px;
  text-decoration: none;
}

.btn-primary {
  background-color: #2C5282;
  color: white;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.2);
}

.btn-primary:hover {
  background-color: #1a365d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 82, 130, 0.3);
  color: white;
}

.btn-secondary {
  background-color: #38B2AC;
  color: white;
  box-shadow: 0 4px 12px rgba(56, 178, 172, 0.2);
}

.btn-secondary:hover {
  background-color: #2C9A94;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 178, 172, 0.3);
  color: white;
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C5282 0%, #1a365d 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(246, 173, 85, 0.1);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

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

.badge {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

/* Stats Banner */
.stats-banner {
  background-color: #FFFFFF;
  padding: 60px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5282;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #4A5568;
  font-weight: 500;
}

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
  font-size: 18px;
  color: #4A5568;
}

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

/* Cards and Grids */
.courses-grid,
.benefits-grid,
.features-grid,
.guides-grid,
.stories-grid,
.methods-grid,
.categories-grid,
.metrics-grid,
.principles-grid,
.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.course-card,
.benefit-item,
.feature-item,
.guide-card,
.story-card,
.method-card,
.category-item,
.metric-item,
.principle-card,
.action-card,
.article-card,
.faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 24px;
}

.course-card:hover,
.guide-card:hover,
.story-card:hover,
.action-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-card h3,
.guide-card h3,
.story-card h3,
.action-card h3,
.article-card h3 {
  color: #2C5282;
  margin-bottom: 16px;
}

.course-card.featured {
  border: 3px solid #F6AD55;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
}

.skill-badge {
  display: inline-block;
  background-color: #38B2AC;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.course-price {
  font-size: 28px;
  font-weight: 700;
  color: #2C5282;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Testimonials */
.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.testimonial-card {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  border-left: 4px solid #F6AD55;
  margin-bottom: 24px;
}

.quote {
  font-size: 18px;
  line-height: 1.7;
  color: #2D3748;
  margin-bottom: 24px;
  font-style: italic;
}

.student-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.student-info strong {
  color: #2C5282;
  font-size: 16px;
}

.student-info span {
  color: #4A5568;
  font-size: 14px;
}

.results {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.results p {
  color: #2D3748;
  font-size: 14px;
  margin-bottom: 0;
}

/* CTA Sections */
.cta-section,
.cta-banner,
.guarantee,
.resource-cta,
.consultation-booking,
.newsletter-signup {
  background: linear-gradient(135deg, #2C5282 0%, #1a365d 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  margin: 40px 0;
}

.cta-content h2,
.cta-banner h2,
.guarantee-content h2,
.resource-cta h2,
.consultation-booking h2,
.newsletter-signup h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-content p,
.cta-banner p,
.guarantee-content p,
.resource-cta p,
.consultation-booking p,
.newsletter-signup p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.secondary-text {
  margin-top: 24px;
  font-size: 16px;
}

.secondary-text a {
  color: #F6AD55;
  text-decoration: underline;
}

.secondary-text a:hover {
  color: white;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2C5282 0%, #1a365d 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 16px;
}

.page-description,
.page-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #38B2AC;
  font-weight: 700;
  font-size: 20px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 40px auto;
}

.timeline-step {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F6AD55;
}

.timeline-step h3 {
  color: #2C5282;
  margin-bottom: 8px;
}

.time-estimate {
  display: inline-block;
  background-color: #38B2AC;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* Confirmation Page */
.confirmation-hero {
  background: linear-gradient(135deg, #38B2AC 0%, #2C9A94 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: white;
  color: #38B2AC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px auto;
}

.confirmation-message,
.next-steps {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

/* Newsletter */
.newsletter-benefits ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 24px auto;
}

.newsletter-benefits li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F6AD55;
  font-weight: 700;
  font-size: 20px;
}

/* Contact Methods */
.methods-grid {
  justify-content: center;
}

.method-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.method-card h3 {
  color: #2C5282;
  margin-bottom: 16px;
}

.availability {
  color: #4A5568;
  font-size: 14px;
  font-style: italic;
}

/* Form Notice */
.form-notice {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #2C5282;
}

.form-notice ul {
  text-align: left;
  margin-top: 16px;
}

/* FAQ */
.faq-grid {
  justify-content: flex-start;
}

.faq-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.faq-item h3 {
  color: #2C5282;
  font-size: 18px;
  margin-bottom: 12px;
}

/* Read Time */
.read-time {
  display: inline-block;
  background-color: #F6AD55;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

/* Footer */
.site-footer {
  background-color: #1a365d;
  color: white;
  padding: 60px 20px 24px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: #F6AD55;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

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

.footer-nav a:hover {
  color: #F6AD55;
  padding-left: 8px;
}

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

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a365d;
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
}

.cookie-accept {
  background-color: #38B2AC;
  color: white;
}

.cookie-accept:hover {
  background-color: #2C9A94;
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: white;
}

.cookie-settings {
  background-color: transparent;
  color: #F6AD55;
  border: 2px solid #F6AD55;
}

.cookie-settings:hover {
  background-color: #F6AD55;
  color: white;
}

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

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

.modal-content {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #4A5568;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #F6AD55;
  color: white;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.category-header h3 {
  margin-bottom: 0;
  color: #2C5282;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E0;
  transition: 0.3s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #38B2AC;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.disabled {
  background-color: #38B2AC;
  cursor: not-allowed;
  opacity: 0.6;
}

.category-description {
  font-size: 14px;
  color: #4A5568;
  margin-bottom: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

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

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

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

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

  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .stat-item {
    min-width: auto;
  }

  .courses-grid,
  .benefits-grid,
  .features-grid,
  .guides-grid,
  .stories-grid,
  .testimonials-grid,
  .methods-grid,
  .categories-grid,
  .metrics-grid,
  .principles-grid,
  .action-cards,
  .faq-grid {
    flex-direction: column;
  }

  .course-card,
  .benefit-item,
  .feature-item,
  .guide-card,
  .story-card,
  .testimonial-card,
  .method-card,
  .category-item,
  .metric-item,
  .principle-card,
  .action-card,
  .article-card,
  .faq-item {
    flex: 1 1 100%;
    min-width: auto;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

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

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

  .cookie-btn {
    width: 100%;
  }

  .modal-content {
    padding: 24px;
  }

  section {
    padding: 40px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .course-card,
  .guide-card,
  .story-card,
  .action-card,
  .faq-item {
    flex: 1 1 calc(50% - 24px);
  }

  .benefit-item,
  .feature-item {
    flex: 1 1 calc(33.333% - 24px);
  }
}

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

.hero-content,
.page-header {
  animation: fadeInUp 0.6s ease;
}

/* Accessibility */
.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.cookie-btn:focus,
.modal-close:focus {
  outline: 3px solid #F6AD55;
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid #F6AD55;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}