/* ========================================
   PALE MOUNTAIN STUDIO - SCANDINAVIAN CLEAN DESIGN
   Modern Social Media Content Creation School
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #2D2D2D;
  background-color: #FFFFFF;
  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 {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 16px;
}

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

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

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

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

p {
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
  margin-bottom: 16px;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

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

main {
  min-height: 100vh;
  padding-top: 80px;
}

/* ========================================
   HEADER & NAVIGATION - SCANDINAVIAN MINIMAL
   ======================================== */

header {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}

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

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

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

.nav-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

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

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

.cta-button {
  background-color: #2C5F7C;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1A3A4D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  font-size: 28px;
  color: #2D2D2D;
  background-color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #2D2D2D;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2D2D2D;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #2C5F7C;
}

/* ========================================
   BUTTONS - SCANDINAVIAN STYLE
   ======================================== */

.btn-primary {
  background-color: #2C5F7C;
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #2C5F7C;
}

.btn-primary:hover {
  background-color: #1A3A4D;
  border-color: #1A3A4D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F7C;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #2C5F7C;
}

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: #2D2D2D;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #E0E0E0;
}

.btn-outline:hover {
  border-color: #2C5F7C;
  color: #2C5F7C;
  background-color: rgba(44, 95, 124, 0.05);
}

/* ========================================
   HERO SECTION - CLEAN & SPACIOUS
   ======================================== */

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

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

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

.hero-subtitle {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #7A7A7A;
  font-weight: 500;
}

/* ========================================
   PAGE HERO - SIMPLE HEADER
   ======================================== */

.page-hero {
  background-color: #F9F9F9;
  padding: 120px 20px 60px;
  margin-bottom: 60px;
  text-align: center;
}

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

.page-hero p {
  font-size: 18px;
  color: #5A5A5A;
}

.breadcrumb {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 24px;
  display: block;
  text-align: center;
}

.breadcrumb a {
  color: #2C5F7C;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========================================
   CARDS & CONTENT BLOCKS
   ======================================== */

.benefits-grid,
.courses-grid,
.features-grid,
.team-grid,
.pricing-grid,
.blog-grid,
.info-grid,
.options-grid,
.metrics-grid,
.facilities-grid,
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.benefit-card,
.course-card,
.feature,
.team-member,
.pricing-card,
.post-card,
.info-card,
.option-card,
.facility,
.portfolio-item {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.benefit-card:hover,
.course-card:hover,
.pricing-card:hover,
.post-card:hover,
.option-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #D0D0D0;
}

.benefit-card h3,
.course-card h3,
.feature h3,
.pricing-card h3,
.post-card h3,
.option-card h3 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.benefit-card p,
.course-card p,
.feature p,
.pricing-card p,
.post-card p,
.option-card p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.6;
}

/* ========================================
   BADGES & LABELS
   ======================================== */

.badge {
  background-color: #2C5F7C;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

.course-card.featured,
.pricing-card.featured {
  border: 2px solid #2C5F7C;
  box-shadow: 0 8px 32px rgba(44, 95, 124, 0.15);
}

.course-card.highlight,
.pricing-card.highlight {
  background: linear-gradient(135deg, #F9F9F9 0%, #FFFFFF 100%);
  border: 2px solid #D4956C;
}

/* ========================================
   PRICING
   ======================================== */

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

.original-price {
  font-size: 24px;
  color: #9A9A9A;
  text-decoration: line-through;
  margin-left: 8px;
}

.installment {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 8px;
}

.duration,
.level {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 16px;
}

.includes {
  margin: 24px 0;
  padding: 0;
}

.includes li {
  font-size: 14px;
  color: #4A4A4A;
  padding: 8px 0;
  border-bottom: 1px solid #F5F5F5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.includes li:last-child {
  border-bottom: none;
}

/* ========================================
   STATS & METRICS
   ======================================== */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 48px 0;
  padding: 40px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.stat strong {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F7C;
}

.stat span {
  font-size: 14px;
  color: #7A7A7A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.metric {
  background-color: #F9F9F9;
  padding: 24px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ========================================
   TESTIMONIALS - READABLE CONTRAST
   ======================================== */

.testimonials {
  background-color: #F9F9F9;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

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

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

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

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

.author span {
  font-size: 14px;
  color: #7A7A7A;
}

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

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  margin-bottom: 20px;
}

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

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #5A5A5A;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-member {
  text-align: center;
  padding: 40px 24px;
}

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

.role {
  font-size: 14px;
  color: #2C5F7C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.team-member p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.6;
}

/* ========================================
   BLOG SECTION
   ======================================== */

.featured-post {
  margin-bottom: 60px;
}

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

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 16px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-item {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.popular-item:hover {
  border-color: #2C5F7C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.popular-item h4 {
  font-size: 16px;
  color: #2D2D2D;
  margin: 0;
}

.popular-item span {
  font-size: 14px;
  color: #7A7A7A;
  white-space: nowrap;
}

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

.newsletter {
  background-color: #F9F9F9;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.newsletter p {
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 32px;
}

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

.newsletter-benefits span {
  font-size: 15px;
  color: #4A4A4A;
}

.subscribers {
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 24px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-options,
.contact-info {
  margin-bottom: 60px;
}

.form-note,
.response-time {
  text-align: center;
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 16px;
}

.team-contact-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

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

.email {
  font-size: 14px;
  color: #2C5F7C;
  font-weight: 600;
  margin-top: 12px;
}

.general-contact {
  text-align: center;
  font-size: 16px;
  color: #4A4A4A;
  margin-top: 40px;
}

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

.thank-you-hero {
  background-color: #F9F9F9;
  padding: 120px 20px 80px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 24px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

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

.link-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

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

.link-card p {
  margin-bottom: 24px;
}

/* ========================================
   CTA BANNERS
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #2C5F7C 0%, #1A3A4D 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 4px;
  margin: 60px auto;
  max-width: 1200px;
}

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

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

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

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

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

.guarantee,
.trust,
.availability {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* ========================================
   SPECIAL SECTIONS
   ======================================== */

.special-offer {
  background-color: #F9F9F9;
  border: 2px solid #D4956C;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin: 48px 0;
}

.special-offer p {
  font-size: 18px;
  color: #2D2D2D;
  margin-bottom: 24px;
}

.value-proposition,
.services-preview,
.process,
.features,
.benefits-section,
.mission-section,
.facilities-section,
.pricing-intro,
.payment-options,
.guarantees,
.success-metrics,
.portfolio-intro,
.story-section,
.team-section,
.next-steps,
.explore-more {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-subtitle,
.subtitle {
  font-size: 18px;
  color: #5A5A5A;
  text-align: center;
  margin-bottom: 48px;
}

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

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

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 20px;
}

.text-section ul {
  margin: 24px 0;
  padding-left: 24px;
}

.text-section ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4A4A4A;
}

.last-updated {
  font-size: 14px;
  color: #7A7A7A;
  text-align: center;
  margin-top: 8px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.mission-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #F9F9F9;
  border-radius: 4px;
  margin-bottom: 20px;
}

.values {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 40px;
  margin-top: 40px;
}

.values h3 {
  margin-bottom: 24px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values ul li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 20px;
  background-color: #F9F9F9;
  border-left: 4px solid #2C5F7C;
  border-radius: 4px;
}

.location,
.directions {
  text-align: center;
  font-size: 15px;
  color: #5A5A5A;
  margin-top: 32px;
}

.directions p {
  margin-bottom: 16px;
}

.note {
  font-size: 13px;
  color: #7A7A7A;
  margin-top: 8px;
}

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

.pricing-badges .badge {
  background-color: #F9F9F9;
  color: #2C5F7C;
  border: 1px solid #E8E8E8;
}

.option,
.guarantee {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.option h3,
.guarantee h3 {
  margin-bottom: 12px;
}

.results {
  font-size: 14px;
  color: #2C5F7C;
  font-weight: 600;
  margin-top: 12px;
}

.student {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 12px;
}

.benefit-item {
  background-color: #F9F9F9;
  padding: 20px;
  border-left: 4px solid #2C5F7C;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #4A4A4A;
}

/* ========================================
   FOOTER - SCANDINAVIAN MINIMAL
   ======================================== */

footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

.footer-col h4 {
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  color: #B0B0B0;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: #B0B0B0;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #8A8A8A;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #4A4A4A;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border: 2px solid #2C5F7C;
}

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

.cookie-reject {
  background-color: #E8E8E8;
  color: #2D2D2D;
  border: 2px solid #E8E8E8;
}

.cookie-reject:hover {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
}

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

.cookie-settings:hover {
  background-color: rgba(44, 95, 124, 0.1);
}

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

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

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

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

.cookie-modal-close {
  font-size: 24px;
  color: #7A7A7A;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F9F9F9;
  border-radius: 4px;
}

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 12px;
}

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

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

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  /* Hide Desktop Navigation */
  .nav-menu,
  header .cta-button {
    display: none;
  }

  /* Typography Adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

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

  /* Layout Adjustments */
  .section {
    padding: 40px 20px;
  }

  main {
    padding-top: 80px;
  }

  /* Hero Section */
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  /* Card Grids - Single Column */
  .benefits-grid,
  .courses-grid,
  .features-grid,
  .team-grid,
  .pricing-grid,
  .blog-grid,
  .info-grid,
  .options-grid,
  .testimonial-grid,
  .steps,
  .stats,
  .mission-grid {
    flex-direction: column;
  }

  .benefit-card,
  .course-card,
  .feature,
  .team-member,
  .pricing-card,
  .post-card,
  .info-card,
  .option-card,
  .testimonial-card,
  .step,
  .mission-item,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 60px 20px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

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

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

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

  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 1;
    min-width: 100px;
  }

  /* Stats */
  .stats {
    gap: 24px;
  }

  .stat strong {
    font-size: 28px;
  }

  /* Price */
  .price {
    font-size: 32px;
  }

  .original-price {
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .benefits-grid,
  .courses-grid,
  .features-grid,
  .pricing-grid,
  .blog-grid {
    gap: 20px;
  }

  .benefit-card,
  .course-card,
  .feature,
  .pricing-card,
  .post-card {
    flex: 1 1 calc(50% - 20px);
  }

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

  h2 {
    font-size: 28px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */

a:focus,
button:focus {
  outline: 2px solid #2C5F7C;
  outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
  outline: 2px solid #2C5F7C;
  outline-offset: 4px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  footer {
    display: none;
  }

  main {
    padding-top: 0;
  }

  body {
    background-color: #FFFFFF;
  }
}

/* ========================================
   END OF STYLES
   ======================================== */