/* ===================================
   MOONSTONE DRIVE ACADEMY - CSS
   Monochrome Sophisticated Design
   =================================== */

/* ===================================
   CSS RESET & 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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

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

a:hover {
  opacity: 0.7;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

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

.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.btn-primary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.btn-link {
  background: transparent;
  color: #000000;
  border: none;
  padding: 8px 0;
  font-weight: 600;
  text-decoration: underline;
}

.btn-link:hover {
  opacity: 0.7;
}

/* ===================================
   MOBILE MENU TOGGLE BUTTON
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #000000;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

/* ===================================
   MOBILE MENU OVERLAY
   =================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: right 0.4s ease;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #666666;
  opacity: 1;
}

/* ===================================
   HEADER
   =================================== */

header {
  background: #ffffff;
  border-bottom: 2px solid #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

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

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
}

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

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

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.trust-indicators span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.page-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

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

.page-subtitle {
  font-size: 18px;
  color: #333333;
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #000000;
  font-weight: 600;
}

.breadcrumbs span {
  color: #666666;
}

/* ===================================
   FLEXBOX GRID LAYOUTS
   =================================== */

.features-grid, .courses-grid, .stats-grid, .testimonials-grid,
.steps-grid, .faq-grid, .values-grid, .methodology-grid,
.benefits-grid, .process-grid, .candidate-grid, .blog-grid,
.categories-grid, .suggestions-grid, .contact-grid, .points-grid,
.rights-grid, .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.feature-card, .course-card, .stat-item, .testimonial-card,
.step-item, .faq-item, .value-card, .method-item,
.benefit-item, .process-step, .candidate-item, .post-card,
.category-card, .suggestion-card, .contact-card, .point-item,
.right-item, .footer-column {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

/* ===================================
   FEATURE CARDS
   =================================== */

.feature-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #000000;
}

.feature-card p {
  color: #333333;
  line-height: 1.6;
}

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

.course-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.course-card h3 {
  color: #000000;
  font-size: 22px;
}

.course-card p {
  color: #333333;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.level {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 4px;
}

/* ===================================
   STATISTICS
   =================================== */

.statistics {
  background: #000000;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.statistics h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #cccccc;
  font-weight: 600;
}

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

.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #f5f5f5;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #000000;
  font-size: 16px;
}

.testimonial-author span {
  color: #666666;
  font-size: 14px;
}

/* ===================================
   STEPS & PROCESS
   =================================== */

.learning-path, .process-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.steps-grid, .process-grid {
  gap: 32px;
}

.step-item, .process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 8px;
  margin-bottom: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

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

.step-item p, .process-step p {
  color: #333333;
}

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

.cta-banner, .enrollment-cta, .cta-section, .application-cta {
  background: #000000;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 32px;
}

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

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

/* ===================================
   FAQ SECTION
   =================================== */

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

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

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

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

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

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

.value-proposition, .mission-vision, .story-section,
.methodology-section, .facilities-section, .program-overview,
.benefits-section, .ideal-candidate, .office-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-grid, .content-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.content-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
}

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

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

/* ===================================
   MENTORING HIGHLIGHT
   =================================== */

.mentoring-highlight {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.mentoring-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.mentoring-features span {
  padding: 10px 20px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin: 32px 0;
}

.price-highlight {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 24px 0;
}

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

.featured-post {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.post-featured {
  max-width: 800px;
  margin: 0 auto;
}

.post-featured h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.post-excerpt {
  font-size: 18px;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #666666;
}

.post-meta span {
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 4px;
}

.blog-section, .categories-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.post-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.post-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.post-card h3 {
  font-size: 20px;
  color: #000000;
}

.category-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-4px);
}

.category-card h3 {
  margin-bottom: 8px;
}

.category-card:hover h3 {
  color: #ffffff;
}

.category-card span {
  font-size: 14px;
  color: #666666;
}

.category-card:hover span {
  color: #cccccc;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.newsletter-section {
  background: #000000;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.newsletter-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-content p {
  color: #cccccc;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #000000;
}

.newsletter-form button {
  flex-shrink: 0;
}

.privacy-note {
  font-size: 12px;
  color: #999999;
}

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

.contact-methods, .contact-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 16px;
  color: #000000;
}

.contact-card p {
  color: #333333;
  line-height: 1.6;
}

.contact-card a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #000000;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

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

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.last-update {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #000000;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-navigation {
  padding: 40px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===================================
   COOKIES TABLE
   =================================== */

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

.table-responsive {
  overflow-x: auto;
  margin-top: 32px;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 8px;
}

.cookies-table thead {
  background: #000000;
  color: #ffffff;
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
  font-weight: 700;
}

.cookies-table tbody tr:hover {
  background: #f5f5f5;
}

/* ===================================
   COOKIE SETTINGS
   =================================== */

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

.cookie-toggles {
  max-width: 700px;
  margin: 32px auto;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.toggle-info strong {
  color: #000000;
  font-size: 16px;
}

.toggle-info span {
  font-size: 14px;
  color: #666666;
}

.toggle-button {
  padding: 8px 20px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.toggle-button:hover {
  background: #000000;
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

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

.thankyou-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

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

.thankyou-message {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
}

.next-steps, .suggested-content, .urgent-contact, .navigation-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.expected-time {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-top: 32px;
}

.suggestion-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  text-align: center;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  margin-bottom: 12px;
}

.suggestion-card p {
  margin-bottom: 20px;
}

.urgent-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 8px;
}

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

/* ===================================
   RIGHTS & BENEFITS
   =================================== */

.rights-summary, .pricing-section, .dispute-section, .key-points-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.right-item, .point-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #000000;
  text-align: center;
  margin-bottom: 20px;
}

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

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

.contact-cta a {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
}

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

.guarantee, .urgency {
  font-size: 16px;
  color: #666666;
  margin: 16px 0;
  font-style: italic;
}

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

footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
}

.footer-grid {
  gap: 40px;
  margin-bottom: 40px;
}

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

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

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

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  opacity: 1;
}

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

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

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

.legal-nav a {
  color: #999999;
  font-size: 14px;
}

.legal-nav a:hover {
  color: #ffffff;
  opacity: 1;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #000000;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

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

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

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

.cookie-consent-buttons button {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.cookie-accept-all:hover {
  background: #333333;
  border-color: #333333;
}

.cookie-reject-all {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.cookie-reject-all:hover {
  background: #f5f5f5;
}

.cookie-settings-btn {
  background: transparent;
  color: #666666;
  border: 1px solid #cccccc;
}

.cookie-settings-btn:hover {
  background: #f5f5f5;
  border-color: #999999;
}

/* ===================================
   COOKIE SETTINGS MODAL
   =================================== */

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.cookie-settings-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #333333;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
}

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

.cookie-category-header h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #cccccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #000000;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

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

.cookie-category-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 18px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-cta {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Flexbox grids - single column */
  .features-grid, .courses-grid, .stats-grid, .testimonials-grid,
  .steps-grid, .faq-grid, .values-grid, .methodology-grid,
  .benefits-grid, .process-grid, .candidate-grid, .blog-grid,
  .categories-grid, .suggestions-grid, .contact-grid, .points-grid,
  .rights-grid, .footer-grid, .content-grid {
    flex-direction: column;
  }
  
  .feature-card, .course-card, .stat-item, .testimonial-card,
  .step-item, .faq-item, .value-card, .method-item,
  .benefit-item, .process-step, .candidate-item, .post-card,
  .category-card, .suggestion-card, .contact-card, .point-item,
  .right-item, .footer-column, .content-block {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stat-number { font-size: 42px; }
  
  /* Price */
  .price-large { font-size: 36px; }
  .price-highlight { font-size: 28px; }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-nav {
    justify-content: center;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* Tables */
  .cookies-table {
    font-size: 14px;
  }
  
  .cookies-table th,
  .cookies-table td {
    padding: 12px 8px;
  }
  
  /* Toggle items */
  .toggle-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  .section {
    padding: 40px 16px;
  }
  
  .feature-card, .course-card, .testimonial-card {
    padding: 24px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number { font-size: 36px; }
  .price-large { font-size: 32px; }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.feature-card, .course-card, .testimonial-card, .post-card {
  animation: fadeInUp 0.6s ease;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent-banner {
    display: none;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}