/* =================================================================
   SABLE STRIKE - ELEGANT CLASSIC DESIGN SYSTEM
   Timeless elegant design with refined elements
   ================================================================= */

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

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #2D3748;
  background-color: #FAF9F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A202C;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 500;
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-size: 28px;
  font-weight: 400;
}

h4 {
  font-size: 22px;
  font-weight: 400;
}

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

a {
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2D3748;
}

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

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

strong {
  font-weight: 600;
  color: #2D3748;
}

blockquote {
  border-left: 3px solid #D4AF37;
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: #4A5568;
}

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2D3748;
  color: #FAF9F7;
  border-color: #2D3748;
}

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

.btn-secondary {
  background-color: transparent;
  color: #2D3748;
  border-color: #2D3748;
}

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

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

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #2D3748;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #4A90E2;
}

.header-cta {
  display: flex;
  gap: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #2D3748;
  color: #FAF9F7;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1A202C;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2D3748;
  cursor: pointer;
  width: 48px;
  height: 48px;
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2D3748;
  padding: 16px;
  border-bottom: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #4A90E2;
  padding-left: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F7F6F4 0%, #FFFFFF 100%);
  padding: 80px 0;
  border-bottom: 1px solid #E2E8F0;
}

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

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

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 40px;
}

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

.trust-indicator {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
}

.trust-indicator p {
  font-size: 16px;
  color: #718096;
  font-style: italic;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #F7F6F4 0%, #FFFFFF 100%);
  padding: 60px 0;
  border-bottom: 1px solid #E2E8F0;
}

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

.page-hero p {
  font-size: 20px;
  color: #4A5568;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #718096;
}

.breadcrumb a {
  color: #4A90E2;
}

.breadcrumb span {
  color: #2D3748;
}

/* SECTIONS */
.benefits,
.services,
.process,
.testimonials,
.stats,
.faq,
.courses-detailed,
.guarantee,
.story,
.values,
.team,
.accreditation,
.featured-testimonial,
.testimonials-detailed,
.career-paths,
.featured-resources,
.tutorials,
.tools,
.community,
.contact-options,
.contact-info,
.contact-form-section,
.faq-contact,
.legal-content,
.next-steps,
.while-you-wait,
.social-proof {
  padding: 60px 0;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* GRID LAYOUTS - USING ONLY FLEXBOX */
.benefits-grid,
.services-grid,
.process-grid,
.testimonials-grid,
.stats-grid,
.faq-list,
.mission-vision,
.values-grid,
.team-grid,
.accreditation-grid,
.story-grid,
.paths-grid,
.resources-grid,
.tutorials-list,
.tools-grid,
.community-grid,
.options-grid,
.info-grid,
.actions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

/* CARDS */
.benefit-card,
.service-card,
.process-step,
.testimonial-card,
.stat-card,
.faq-item,
.mission-card,
.value-card,
.team-member,
.accreditation-item,
.story-card,
.path-card,
.resource-card,
.tutorial-item,
.tool-card,
.community-card,
.option-card,
.info-card,
.action-card,
.step-card,
.course-detailed,
.guarantee-item {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.resource-card:hover,
.tool-card:hover,
.community-card:hover,
.option-card:hover,
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #D4AF37;
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.resource-card h3,
.tool-card h3,
.community-card h3,
.option-card h3,
.action-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A202C;
}

.benefit-card p,
.service-card p,
.value-card p,
.resource-card p,
.tool-card p {
  color: #4A5568;
  line-height: 1.7;
}

/* SERVICE CARDS */
.service-card.featured,
.course-detailed.featured {
  border: 2px solid #D4AF37;
  background: linear-gradient(135deg, #FFFEF8 0%, #FFFFFF 100%);
}

.service-card .price,
.course-detailed .course-price {
  font-size: 32px;
  font-weight: 500;
  color: #2D3748;
  margin: 24px 0;
  font-family: 'Georgia', serif;
}

.service-card .btn-primary,
.course-detailed .btn-primary {
  margin-top: 16px;
  width: 100%;
}

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

/* COURSE DETAILED CARDS */
.course-detailed {
  flex: 1 1 100%;
  margin-bottom: 32px;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.course-badge {
  background-color: #D4AF37;
  color: #1A202C;
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.course-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F7F6F4;
  border-left: 3px solid #D4AF37;
}

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

.course-curriculum {
  margin: 32px 0;
}

.course-curriculum h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1A202C;
}

.course-curriculum ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-curriculum li {
  padding-left: 32px;
  position: relative;
}

.course-curriculum li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

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

.course-footer .course-price {
  margin: 0;
}

.savings,
.minimum {
  font-size: 14px;
  color: #D4AF37;
  font-weight: 500;
}

/* PROCESS STEPS */
.process-step {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #2D3748;
  color: #FAF9F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  margin: 0 auto 24px;
  font-family: 'Georgia', serif;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #F7F6F4 0%, #FFFFFF 100%);
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  padding: 32px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #2D3748;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 500;
  color: #4A5568;
  margin-bottom: 0;
}

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

/* FEATURED TESTIMONIAL */
.featured-card {
  background-color: #FFFFFF;
  border: 2px solid #D4AF37;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.featured-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.featured-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.featured-header .role {
  font-size: 18px;
  color: #4A90E2;
  margin-bottom: 8px;
}

.featured-header .course {
  font-size: 16px;
  color: #718096;
  font-style: italic;
}

.featured-card blockquote {
  font-size: 22px;
  line-height: 1.8;
  color: #2D3748;
  border-left: 4px solid #D4AF37;
  padding-left: 32px;
  margin: 32px 0;
}

.featured-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.stat-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.stat-item p {
  font-size: 14px;
  color: #4A5568;
  margin: 0;
}

/* STORY CARDS */
.story-card {
  flex: 1 1 calc(50% - 32px);
  background-color: #FFFFFF;
  padding: 32px;
}

.story-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.story-title {
  font-size: 16px;
  color: #4A90E2;
  margin-bottom: 8px;
  font-weight: 500;
}

.story-course {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-bottom: 20px;
}

.story-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: #2D3748;
  border-left: 3px solid #D4AF37;
  padding-left: 20px;
  margin: 20px 0;
}

.outcome {
  font-size: 14px;
  color: #4A5568;
  padding: 16px;
  background-color: #F7F6F4;
  border-left: 3px solid #D4AF37;
  margin-top: 20px;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
  padding: 80px 0;
}

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

.stat-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 24px;
  flex: 1 1 calc(25% - 32px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-card h3 {
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-card p {
  font-size: 16px;
  color: #E2E8F0;
  margin: 0;
}

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

.faq-item {
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  padding: 32px;
  flex: 1 1 100%;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1A202C;
}

.faq-item p {
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #F7F6F4 0%, #FFFFFF 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.cta-banner h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 20px;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

/* TEXT SECTION */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #4A5568;
}

/* MISSION & VISION */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.mission-card {
  flex: 1 1 calc(50% - 32px);
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  padding: 32px;
}

.mission-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A202C;
}

/* TEAM MEMBERS */
.team-member {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-member .role {
  font-size: 16px;
  color: #4A90E2;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
}

/* TUTORIAL LIST */
.tutorials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.tutorial-item {
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  padding: 24px;
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tutorial-item h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #1A202C;
}

.tutorial-item p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

/* CONTACT OPTIONS */
.contact-options {
  background: linear-gradient(135deg, #F7F6F4 0%, #FFFFFF 100%);
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.option-card {
  flex: 1 1 calc(33.333% - 32px);
  text-align: center;
}

.contact-detail {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
  margin-top: 16px;
}

/* CONTACT INFO */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.info-card {
  flex: 1 1 calc(25% - 32px);
  text-align: center;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1A202C;
}

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

/* FORM SECTION */
.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.form-info {
  flex: 1 1 300px;
}

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

.form-placeholder {
  flex: 1 1 400px;
  background-color: #F7F6F4;
  border: 2px dashed #D4AF37;
  padding: 32px;
}

.form-placeholder ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.form-placeholder li {
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  color: #4A5568;
}

.form-note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 20px;
}

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

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

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

.thank-you-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.thank-you-content .lead {
  font-size: 20px;
  color: #4A5568;
}

.return-home {
  text-align: center;
  padding: 60px 0;
}

/* RESOURCE META */
.resource-meta {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin: 16px 0;
}

/* FOOTER */
footer {
  background-color: #2D3748;
  color: #E2E8F0;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

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

.footer-section h4 {
  font-size: 20px;
  color: #D4AF37;
  margin-bottom: 20px;
}

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

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

.footer-nav a {
  font-size: 14px;
  color: #CBD5E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #D4AF37;
}

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

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

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #D4AF37;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Georgia', serif;
}

.cookie-btn-accept {
  background-color: #2D3748;
  color: #FAF9F7;
  border-color: #2D3748;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #2D3748;
  border-color: #2D3748;
}

.cookie-btn-reject:hover {
  background-color: #F7F6F4;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #4A90E2;
  border-color: #4A90E2;
}

.cookie-btn-settings:hover {
  background-color: rgba(74, 144, 226, 0.1);
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 2px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #4A5568;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F7F6F4;
  border-left: 3px solid #D4AF37;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  font-size: 14px;
  color: #4A5568;
  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: #D4AF37;
}

.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-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .hero h1 { font-size: 48px; }
  .page-hero h1 { font-size: 40px; }
  
  .benefit-card,
  .service-card,
  .value-card,
  .resource-card,
  .tool-card,
  .community-card,
  .option-card,
  .action-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .process-step {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-card,
  .info-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .team-member {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  body { font-size: 16px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 18px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Layout */
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .process-step,
  .testimonial-card,
  .stat-card,
  .mission-card,
  .value-card,
  .team-member,
  .accreditation-item,
  .story-card,
  .path-card,
  .resource-card,
  .tool-card,
  .community-card,
  .option-card,
  .info-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Featured Card */
  .featured-card {
    padding: 32px 24px;
  }
  
  .featured-card blockquote {
    font-size: 18px;
  }
  
  .featured-stats {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* CTA Banner */
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-banner p {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Form */
  .form-wrapper {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card .price,
  .course-price {
    font-size: 28px;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .stat-card h3 {
    font-size: 40px;
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cta-banner,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}