:root {
  --primary: #1a472a;
  --secondary: #2d5f3f;
  --accent: #f4a261;
  --dark: #0f1c13;
  --light: #f8f9fa;
  --text: #2c3e50;
  --border: #e0e6ed;
  --success: #27ae60;
  --warning: #f39c12;
  --gradient-primary: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
  --gradient-accent: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: #fafbfc;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; letter-spacing: -0.01em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.container-custom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-family: 'Archivo', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  
  background-size: cover;
  background-repeat: no-repeat;
  /* opacity: 0.5; */
  z-index: 2;
  background: linear-gradient(165deg, #fafbfc 0%, #f0f4f1 100%);
}

.hero-section::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url('../images/banner.png');
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  opacity: 0.08;
}

.shape-1 {
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: var(--gradient-primary);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphing 20s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--gradient-accent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphing 25s ease-in-out infinite reverse;
}

@keyframes morphing {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 70% 40% 60% / 50% 60% 40% 50%; }
  75% { border-radius: 70% 30% 60% 40% / 30% 50% 50% 60%; }
}

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

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

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

/* Buttons */
.btn-custom {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-family: 'Archivo', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.2rem;
  color: var(--secondary);
  line-height: 1.8;
}

/* How Learning Works Section */
.learning-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

.timeline-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.timeline-content p {
  color: var(--text);
  line-height: 1.7;
}

/* Skill Mapping Section */
.skill-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skill-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.skill-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.skill-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.skill-list {
  list-style: none;
}

.skill-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text);
}

.skill-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

/* Philosophy Section */
.philosophy-section {
  background: var(--gradient-primary);
  color: white;
}

.philosophy-section .section-title,
.philosophy-section .section-description {
  color: white;
}

.philosophy-section .section-subtitle {
  color: var(--accent);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.philosophy-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.philosophy-card h4 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Statistics Section */
.stats-section {
  background: #f8f9fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Technology Stack Carousel */
.tech-stack {
  padding: 4rem 0;
  overflow: hidden;
}

.tech-carousel {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
}

.tech-item {
  flex-shrink: 0;
  background: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.tech-item i {
  font-size: 2.5rem;
  color: var(--primary);
}

.tech-item span {
  font-family: 'Archivo', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pricing Card */
.pricing-section {
  background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  position: relative;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Archivo', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1.5rem 0;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text);
}

.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

/* Journey Map */
.journey-map {
  max-width: 1000px;
  margin: 0 auto;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.journey-step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  z-index: -1;
}

.journey-step:last-child::before {
  display: none;
}

.journey-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
}

.journey-step h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.trust-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.trust-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.trust-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: 12px;
}

.trust-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.trust-content p {
  color: var(--text);
  line-height: 1.6;
}

/* Course Page Styles */
.course-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 10rem 0 6rem;
  margin-top: 80px;
}

.course-hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.course-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

.meta-item i {
  font-size: 1.3rem;
  color: var(--accent);
}

.course-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.content-main {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.content-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.sidebar-card .pricing-price {
  margin: 2rem 0;
}

.curriculum-list {
  list-style: none;
  margin-top: 2rem;
}

.curriculum-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.curriculum-list i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Blog Styles */
.blog-header {
  background: var(--gradient-primary);
  color: white;
  padding: 10rem 0 4rem;
  margin-top: 80px;
  text-align: center;
}

.blog-header h1 {
  color: white;
}

.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--secondary);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px;
}

.contact-item-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--text);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-control-custom {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

textarea.form-control-custom {
  min-height: 150px;
  resize: vertical;
}

.form-notice {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 1rem;
  line-height: 1.5;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .form-control-custom {
  border-color: #e74c3c;
}

.form-group.error .error-message {
  display: block;
}

/* Map */
.map-container {
  margin-top: 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Policy Pages */
.policy-page {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.policy-page h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.policy-page h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-page p {
  margin-bottom: 1.5rem;
}

.policy-page ul,
.policy-page ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.policy-page li {
  margin-bottom: 0.75rem;
}

/* Footer */
.main-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: 'Archivo', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: white;
}

.footer-column h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s ease;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.75rem 2rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--primary);
  color: white;
}

.btn-cookie-accept:hover {
  background: var(--secondary);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-cookie-decline:hover {
  background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .course-content {
    grid-template-columns: 1fr;
  }
  
  .content-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .journey-step::before {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
}

.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}
