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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}

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

p {
  margin-bottom: 16px;
  color: #4A5568;
}

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

a:hover {
  color: #1E3DB8;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5BFF;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #4A5568;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2D5BFF;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #2C3E50;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F7FAFC;
  color: #2D5BFF;
  transform: translateX(8px);
}

/* Header */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

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

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

.cta-button {
  background-color: #2D5BFF;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(45, 91, 255, 0.2);
}

.cta-button:hover {
  background-color: #1E3DB8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.btn-primary {
  background-color: #2D5BFF;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  background-color: #1E3DB8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 91, 255, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2D5BFF;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #2D5BFF;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #2D5BFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.trust-badges span {
  color: #718096;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.page-hero p {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 16px;
}

.course-count,
.rating-summary {
  font-weight: 600;
  color: #2D5BFF;
  margin-top: 16px;
}

/* Section Styling */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1A1A1A;
}

/* Benefits Section */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
  color: #2D5BFF;
  font-size: 24px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

/* Course Cards */
.courses-grid,
.programs-grid,
.formats-grid,
.models-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.course-card,
.program-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.course-card:hover,
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-card h3,
.program-card h3 {
  font-size: 24px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.course-card p,
.program-card p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5BFF;
  margin: 16px 0;
}

.course-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.course-features span {
  background-color: #EDF2F7;
  color: #2D5BFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.btn {
  background-color: #2D5BFF;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(45, 91, 255, 0.2);
}

.btn:hover {
  background-color: #1E3DB8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
  color: #FFFFFF;
}

.link-more {
  display: block;
  text-align: center;
  margin-top: 32px;
  color: #2D5BFF;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.link-more:hover {
  color: #1E3DB8;
  text-decoration: underline;
}

/* Statistics */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

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

.stat-number,
.number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2D5BFF;
  margin-bottom: 8px;
}

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

/* Testimonials */
.testimonial-grid,
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background-color: #F7FAFC;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2D5BFF;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card .author strong {
  color: #1A1A1A;
  font-size: 16px;
}

.testimonial-card .author span {
  color: #718096;
  font-size: 14px;
  font-weight: 400;
}

.rating {
  color: #FFC857;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Features & Platform */
.features-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature,
.method,
.format {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature:hover,
.method:hover,
.format:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature h3,
.method h3,
.format h3 {
  color: #2D5BFF;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p,
.method p,
.format p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

/* CTA Sections */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2D5BFF 0%, #1E3DB8 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 20px;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #E2E8F0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background-color: #FF6B35;
}

.cta-buttons .btn-primary:hover {
  background-color: #E85A2A;
}

.cta-buttons .btn-secondary {
  background-color: #FFFFFF;
  color: #2D5BFF;
  border: 2px solid #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.benefits-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.benefits-list span {
  color: #E2E8F0;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

/* Story & Values */
.story,
.mission-vision,
.methodology {
  background-color: #F7FAFC;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

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

.value-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #2D5BFF;
  font-size: 24px;
  margin-bottom: 12px;
}

/* Achievements */
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.achievement {
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
  padding: 32px;
  background-color: #F7FAFC;
  border-radius: 12px;
}

.achievement h3 {
  font-size: 48px;
  color: #2D5BFF;
  margin-bottom: 8px;
}

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

/* Blog */
.blog-categories {
  margin-bottom: 60px;
}

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

.category-card {
  background-color: #EDF2F7;
  padding: 16px 24px;
  border-radius: 8px;
  color: #2D5BFF;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.category-card:hover {
  background-color: #2D5BFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.post-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.post-meta span {
  color: #718096;
  font-size: 14px;
}

.read-more {
  color: #2D5BFF;
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
}

.read-more:hover {
  color: #1E3DB8;
  text-decoration: underline;
}

/* Newsletter */
.newsletter-signup {
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 20px;
}

.newsletter-benefits {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.newsletter-benefits span {
  color: #4A5568;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.subscriber-count {
  color: #2D5BFF;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Ratings & Reviews */
.statistics-banner {
  background-color: #F7FAFC;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.ratings-breakdown {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.ratings-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
}

.rating-item .category {
  font-weight: 500;
  color: #2C3E50;
}

.rating-item .score {
  font-weight: 700;
  color: #2D5BFF;
  font-size: 18px;
}

/* Contact Page */
.contact-methods {
  margin-bottom: 60px;
}

.methods-grid {
  margin-bottom: 24px;
}

.response-time {
  text-align: center;
  color: #718096;
  font-size: 14px;
  margin-top: 24px;
}

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

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.input-box {
  width: 100%;
  height: 48px;
  background-color: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.input-box:hover {
  border-color: #CBD5E0;
}

.textarea-box {
  width: 100%;
  height: 120px;
  background-color: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.textarea-box:hover {
  border-color: #CBD5E0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.office-info,
.team-contacts {
  margin-bottom: 60px;
}

.office-details,
.contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.detail,
.contact-item {
  flex: 1 1 300px;
  min-width: 280px;
  text-align: center;
  padding: 24px;
}

.detail h3,
.contact-item h3 {
  color: #2D5BFF;
  font-size: 20px;
  margin-bottom: 12px;
}

/* FAQ */
.faq-quick {
  background-color: #F7FAFC;
  padding: 60px 20px;
}

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

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
  color: #4A5568;
  line-height: 1.6;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48BB78;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.confirmation-details,
.next-steps {
  margin-bottom: 60px;
}

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

.step {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background-color: #F7FAFC;
  border-radius: 12px;
  margin-bottom: 20px;
}

.step h3 {
  color: #2D5BFF;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.action-card,
.content-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.action-card h3,
.content-card h3 {
  color: #2D5BFF;
  font-size: 20px;
}

/* Legal Pages */
.legal-content {
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  text-align: left;
  font-size: 24px;
  color: #2D5BFF;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  text-align: left;
  font-size: 18px;
  color: #1A1A1A;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.rights-overview {
  margin-bottom: 60px;
}

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

.right-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  margin-bottom: 20px;
}

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

.cookies-explanation,
.cookie-management {
  margin-bottom: 60px;
}

.cookies-categories {
  margin-bottom: 60px;
}

/* Trust Signals */
.trust-signals,
.guarantees-grid {
  margin-bottom: 60px;
}

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

.guarantee {
  background-color: #F7FAFC;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  margin-bottom: 20px;
}

.guarantee h3 {
  color: #2D5BFF;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Corporate/Business Pages */
.business-benefits,
.corporate-programs,
.training-formats,
.customization,
.pricing-models {
  margin-bottom: 60px;
}

.note {
  text-align: center;
  color: #718096;
  font-style: italic;
  margin: 24px 0;
}

/* Footer */
footer {
  background-color: #1A202C;
  color: #E2E8F0;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

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

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

.footer-column a {
  display: block;
  color: #CBD5E0;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #2D3748;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

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

.contact-info p {
  color: #CBD5E0;
  font-size: 14px;
  margin-bottom: 8px;
}

.copyright {
  color: #718096;
  font-size: 14px;
  text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A202C;
  color: #E2E8F0;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background-color: #2D5BFF;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #1E3DB8;
}

.cookie-reject {
  background-color: transparent;
  color: #CBD5E0;
  border: 1px solid #4A5568;
}

.cookie-reject:hover {
  background-color: #2D3748;
  border-color: #718096;
}

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

.cookie-settings:hover {
  background-color: #2D5BFF;
  color: #FFFFFF;
}

/* 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: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1A1A1A;
  font-size: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  padding: 16px;
  background-color: #F7FAFC;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #2D5BFF;
  font-size: 18px;
  margin-bottom: 8px;
  text-align: left;
}

.cookie-category p {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.cookie-toggle label {
  color: #2C3E50;
  font-weight: 500;
  cursor: pointer;
}

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

.cookie-save,
.cookie-close {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  flex: 1 1 auto;
}

.cookie-save {
  background-color: #2D5BFF;
  color: #FFFFFF;
}

.cookie-save:hover {
  background-color: #1E3DB8;
}

.cookie-close {
  background-color: #E2E8F0;
  color: #2C3E50;
}

.cookie-close:hover {
  background-color: #CBD5E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-nav {
    gap: 24px;
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Adjust padding and spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .page-hero {
    padding: 48px 16px;
  }
  
  /* Flex layouts stack vertically */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    gap: 12px;
  }
  
  /* Cards take full width */
  .benefit-card,
  .course-card,
  .program-card,
  .testimonial-card,
  .feature,
  .method,
  .format,
  .value-card,
  .right-card,
  .guarantee,
  .post-card,
  .action-card,
  .content-card,
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Form adjustments */
  .form-placeholder {
    padding: 24px;
  }
  
  /* Content wrapper */
  .content-wrapper {
    padding: 24px;
  }
  
  /* Stats and achievements */
  .stats-grid,
  .achievements-grid {
    gap: 16px;
  }
  
  .stat-item,
  .stat,
  .achievement {
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1,
  .page-hero h1 {
    font-size: 28px;
  }
  
  .stat-number,
  .number {
    font-size: 36px;
  }
  
  .achievement h3 {
    font-size: 36px;
  }
  
  .stat-item,
  .stat,
  .achievement {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}