/* ============================================
   CRISP NICHE - SCANDINAVIAN CLEAN DESIGN
   Complete CSS Styles
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A252F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

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

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

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

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

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 8px;
  font-size: 24px;
  color: #2C5F8D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  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;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: #2C5F8D;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F9FA;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #2C5F8D;
  color: #FFFFFF;
}

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

.mobile-nav a {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #2C3E50;
  background: #F7F9FA;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: #2C5F8D;
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ============================================
   HEADER - CLEAN & MINIMAL
   ============================================ */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E8ECEF;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

.main-nav a:hover,
.main-nav a.active {
  color: #2C5F8D;
}

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

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

/* ============================================
   BUTTONS - SCANDINAVIAN SIMPLICITY
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background: #234B6E;
  border-color: #234B6E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
  background: #FFFFFF;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* ============================================
   HERO SECTION - LIGHT & AIRY
   ============================================ */
.hero {
  background: linear-gradient(135deg, #F7F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

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

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

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #E8ECEF;
}

.badge {
  text-align: center;
}

.badge strong {
  display: block;
  font-size: 24px;
  color: #2C5F8D;
  margin-bottom: 4px;
}

/* ============================================
   PAGE HERO - MINIMAL DESIGN
   ============================================ */
.page-hero {
  background: #F7F9FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid #E8ECEF;
}

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

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

/* ============================================
   SECTIONS - CLEAN SPACING
   ============================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A252F;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
.problem-solution {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.problem-solution .content-wrapper {
  text-align: center;
}

.problem {
  font-size: 20px;
  color: #E67E22;
  font-weight: 600;
  margin-bottom: 24px;
}

.solution {
  font-size: 18px;
  color: #2C5F8D;
  line-height: 1.8;
}

/* ============================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ============================================ */
.courses-grid,
.benefits-grid,
.team-grid,
.resources-grid,
.ebooks-grid,
.articles-grid,
.tools-grid,
.options-grid,
.info-grid,
.actions-grid,
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* ============================================
   COURSE CARDS - CLEAN DESIGN
   ============================================ */
.course-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

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

.course-card.featured {
  border: 2px solid #2C5F8D;
}

.course-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E67E22;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

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

.course-card p {
  color: #4A5568;
  margin-bottom: 20px;
  flex-grow: 1;
}

.course-highlights {
  margin: 20px 0;
  padding: 20px;
  background: #F7F9FA;
  border-radius: 8px;
}

.course-highlights li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2C3E50;
  font-size: 15px;
}

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

.course-meta {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.course-meta span {
  padding: 6px 12px;
  background: #E8ECEF;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #2C3E50;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 20px 0;
}

/* ============================================
   BENEFITS & FEATURES
   ============================================ */
.benefit,
.outcome,
.pillar {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.benefit h3,
.outcome h3,
.pillar h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS - CLEAN CARDS
   ============================================ */
.testimonials {
  background: #F7F9FA;
  border-radius: 12px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

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

.testimonial-card .results {
  padding: 12px;
  background: #E8F4F8;
  border-radius: 6px;
  border-left: 3px solid #2C5F8D;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #2C5F8D;
}

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

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

.testimonial-card .author span {
  color: #4A5568;
  font-size: 14px;
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background: #2C5F8D;
  border-radius: 12px;
  color: #FFFFFF;
}

.stats h2 {
  color: #FFFFFF;
}

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

.stat,
.metric {
  text-align: center;
  flex: 1 1 200px;
}

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

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

.metrics .value {
  color: #2C5F8D;
}

.metrics .label {
  color: #4A5568;
}

/* ============================================
   CTA BANNER - PROMINENT
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #1E4060 100%);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  color: #FFFFFF;
}

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

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

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

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #2C5F8D;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover {
  background: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
}

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

.cta-banner .btn-secondary:hover {
  background: #FFFFFF;
  color: #2C5F8D;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-member {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

.team-member h3 {
  color: #1A252F;
  margin-bottom: 8px;
}

.role {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ============================================
   TWO COLUMN LAYOUTS
   ============================================ */
.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
}

/* ============================================
   FEATURED STORY
   ============================================ */
.featured-story {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.story-content blockquote {
  font-size: 24px;
  font-style: italic;
  color: #2C5F8D;
  border-left: 4px solid #E67E22;
  padding-left: 24px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.metrics {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.metric {
  background: #F7F9FA;
  padding: 16px;
  border-radius: 8px;
  flex: 1 1 200px;
}

.author-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E8ECEF;
}

.author-info strong {
  display: block;
  font-size: 18px;
  color: #1A252F;
  margin-bottom: 4px;
}

.author-info p {
  color: #4A5568;
  margin-bottom: 8px;
}

.course-taken {
  color: #2C5F8D;
  font-weight: 600;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-study {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.case-study h3 {
  color: #1A252F;
  margin-bottom: 20px;
}

.case-study p {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resource-card,
.ebook-card,
.article-card,
.tool-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

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

.resource-card.featured {
  border: 2px solid #2C5F8D;
}

.resource-card .badge {
  background: #E67E22;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.format,
.downloads,
.pages,
.pricing,
.meta {
  font-size: 14px;
  color: #4A5568;
  margin-bottom: 8px;
}

.article-card .category {
  background: #E8F4F8;
  color: #2C5F8D;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  background: #F7F9FA;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 24px;
}

.benefits ul {
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}

.benefits li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #2C3E50;
  font-size: 16px;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F8D;
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.option-card,
.info-card,
.action-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.option-card h3,
.info-card h3,
.action-card h3 {
  color: #1A252F;
  margin-bottom: 16px;
}

.note {
  font-size: 14px;
  color: #4A5568;
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq,
.faq-preview {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8ECEF;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

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

/* ============================================
   CONSULTATION BOOKING
   ============================================ */
.consultation-booking {
  background: #F7F9FA;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.booking-details {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin: 24px auto;
  max-width: 600px;
  text-align: left;
}

.booking-details p {
  margin-bottom: 12px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

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

.confirmation {
  font-size: 20px;
  color: #2C5F8D;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.step {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #E8F4F8;
  color: #2C5F8D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.status {
  display: inline-block;
  background: #2C5F8D;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

.time {
  display: inline-block;
  background: #E8ECEF;
  color: #2C3E50;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

.testimonial-single {
  background: #F7F9FA;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.testimonial-single blockquote {
  font-size: 22px;
  font-style: italic;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.testimonial-single .author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.course {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: #F7F9FA;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #E8ECEF;
  margin-bottom: 60px;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #1A252F;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F8D;
}

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

/* ============================================
   FOOTER - MINIMAL & CLEAN
   ============================================ */
footer {
  background: #1A252F;
  color: #E8ECEF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-about {
  flex: 1 1 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.tagline {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 16px;
}

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

.footer-nav {
  flex: 0 1 150px;
}

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

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

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

.footer-contact {
  flex: 0 1 250px;
}

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

.footer-contact p {
  color: #CBD5E0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

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

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

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

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  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;
}

.cookie-text p {
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  color: #4A5568;
  background: #F7F9FA;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #2C5F8D;
  color: #FFFFFF;
}

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

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

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

.cookie-toggle.active {
  background: #2C5F8D;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 16px 0;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards - full width on mobile */
  .course-card,
  .benefit,
  .outcome,
  .pillar,
  .testimonial-card,
  .team-member,
  .resource-card,
  .ebook-card,
  .article-card,
  .tool-card,
  .option-card,
  .info-card,
  .action-card,
  .step {
    flex: 1 1 100%;
  }
  
  /* Two column to single column */
  .two-column > div {
    flex: 1 1 100%;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 40px 24px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-about,
  .footer-nav,
  .footer-contact {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text,
  .cookie-buttons {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
  
  /* Stats grid */
  .stats-grid,
  .metrics-grid {
    gap: 24px;
  }
  
  .stat,
  .metric {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  /* Single column stats */
  .stat,
  .metric {
    flex: 1 1 100%;
  }
  
  .stat-number,
  .value {
    font-size: 36px;
  }
  
  /* Course card adjustments */
  .course-card,
  .resource-card,
  .option-card {
    padding: 24px;
  }
  
  /* Featured story */
  .featured-story {
    padding: 32px 24px;
  }
  
  .story-content blockquote {
    font-size: 20px;
  }
}

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

.hero-content,
.page-hero,
section {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-banner {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
  }
}