/* ============================================
   WEB DESIGN COURSE FOR YOU - MAIN STYLESHEET
   Editorial, Refined, Educational Aesthetic
   ============================================ */

/* CSS Variables - Refined Educational Palette */
:root {
  --wd-primary: #1a365d;
  --wd-secondary: #2d5f8d;
  --wd-accent: #d97706;
  --wd-dark: #0f172a;
  --wd-light: #f8fafc;
  --wd-gray-100: #f1f5f9;
  --wd-gray-200: #e2e8f0;
  --wd-gray-300: #cbd5e1;
  --wd-gray-700: #334155;
  --wd-gray-900: #0f172a;
  --wd-white: #ffffff;
  
  --wd-text-primary: #1e293b;
  --wd-text-secondary: #475569;
  --wd-text-muted: #64748b;
  
  --wd-spacing-xs: 0.5rem;
  --wd-spacing-sm: 1rem;
  --wd-spacing-md: 2rem;
  --wd-spacing-lg: 4rem;
  --wd-spacing-xl: 6rem;
  
  --wd-border-radius: 0.5rem;
  --wd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', 'Georgia', serif;
  color: var(--wd-text-primary);
  background-color: var(--wd-white);
  line-height: 1.8;
  overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--wd-spacing-sm);
  color: var(--wd-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--wd-spacing-sm);
  font-size: 1.125rem;
  color: var(--wd-text-secondary);
}

.wd-lead-text {
  font-size: 1.375rem;
  line-height: 1.7;
  color: var(--wd-text-secondary);
  font-weight: 300;
}

.wd-small-text {
  font-size: 0.9rem;
  color: var(--wd-text-muted);
}

/* Navigation */
.wd-navbar {
  background: var(--wd-white);
  border-bottom: 1px solid var(--wd-gray-200);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.wd-nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--wd-primary);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.wd-nav-link {
  color: var(--wd-text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--wd-transition);
  position: relative;
}

.wd-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 2px;
  background: var(--wd-accent);
  transition: var(--wd-transition);
}

.wd-nav-link:hover {
  color: var(--wd-accent);
}

.wd-nav-link:hover::after {
  width: calc(100% - 2rem);
}

/* Editorial Hero Section */
.wd-editorial-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  
}

.wd-editorial-hero::after{
  background: url('../images/banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 3;
  opacity: 0.3;
}
.wd-editorial-hero .container{
  position: relative;
  z-index: 10;
}
.wd-editorial-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  z-index: 4;
  background: radial-gradient(circle, rgba(209, 119, 6, 0.08) 0%, transparent 70%);
  animation: wd-float 20s ease-in-out infinite;
}

@keyframes wd-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.wd-hero-content {
  position: relative;
  z-index: 2;
  animation: wd-fadeInUp 1s ease-out;
}

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

.wd-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wd-accent);
  font-weight: 600;
  margin-bottom: var(--wd-spacing-sm);
  animation: wd-fadeInUp 1s ease-out 0.2s both;
}

.wd-hero-title {
  animation: wd-fadeInUp 1s ease-out 0.4s both;
}

.wd-hero-description {
  animation: wd-fadeInUp 1s ease-out 0.6s both;
  max-width: 600px;
}

.wd-hero-cta {
  animation: wd-fadeInUp 1s ease-out 0.8s both;
}

/* Buttons */
.wd-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--wd-border-radius);
  transition: var(--wd-transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.wd-btn-primary {
  background: var(--wd-primary);
  color: var(--wd-white);
  box-shadow: 0 4px 6px rgba(26, 54, 93, 0.15);
}

.wd-btn-primary:hover {
  background: var(--wd-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(26, 54, 93, 0.2);
  color: var(--wd-white);
}

.wd-btn-accent {
  background: var(--wd-accent);
  color: var(--wd-white);
  box-shadow: 0 4px 6px rgba(217, 119, 6, 0.15);
}

.wd-btn-accent:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(217, 119, 6, 0.2);
  color: var(--wd-white);
}

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

.wd-btn-outline:hover {
  background: var(--wd-primary);
  color: var(--wd-white);
  transform: translateY(-2px);
}

/* Section Styling */
.wd-section {
  padding: var(--wd-spacing-xl) 0;
}

.wd-section-alt {
  background: var(--wd-gray-100);
}

.wd-section-dark {
  background: var(--wd-dark);
  color: var(--wd-white);
}

.wd-section-dark h2,
.wd-section-dark h3,
.wd-section-dark h4 {
  color: var(--wd-white);
}

.wd-section-dark p {
  color: var(--wd-gray-300);
}

.wd-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--wd-spacing-lg);
}

.wd-section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wd-accent);
  font-weight: 600;
  margin-bottom: var(--wd-spacing-xs);
}

/* Cards */
.wd-card {
  background: var(--wd-white);
  border-radius: var(--wd-border-radius);
  padding: var(--wd-spacing-md);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: var(--wd-transition);
  height: 100%;
  border: 1px solid var(--wd-gray-200);
}

.wd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.wd-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--wd-border-radius);
  margin-bottom: var(--wd-spacing-sm);
}

.wd-card-title {
  font-size: 1.5rem;
  margin-bottom: var(--wd-spacing-xs);
}

.wd-card-text {
  color: var(--wd-text-secondary);
  margin-bottom: var(--wd-spacing-sm);
}

/* Course Cards */
.wd-course-card {
  background: var(--wd-white);
  border-radius: var(--wd-border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--wd-transition);
  height: 100%;
  border: 1px solid var(--wd-gray-200);
}

.wd-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.wd-course-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wd-course-card-body {
  padding: var(--wd-spacing-md);
}

.wd-course-card-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wd-accent);
  font-weight: 600;
  margin-bottom: var(--wd-spacing-xs);
}

.wd-course-card-title {
  font-size: 1.75rem;
  margin-bottom: var(--wd-spacing-sm);
}

.wd-course-card-description {
  color: var(--wd-text-secondary);
  margin-bottom: var(--wd-spacing-md);
}

/* Article Cards */
.wd-article-card {
  display: flex;
  gap: var(--wd-spacing-md);
  background: var(--wd-white);
  border-radius: var(--wd-border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--wd-transition);
  border: 1px solid var(--wd-gray-200);
}

.wd-article-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.wd-article-card-image {
  width: 200px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.wd-article-card-content {
  padding: var(--wd-spacing-md);
  flex: 1;
}

.wd-article-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--wd-text-muted);
  margin-bottom: var(--wd-spacing-xs);
}

.wd-article-card-title {
  font-size: 1.5rem;
  margin-bottom: var(--wd-spacing-xs);
}

/* Learning Path Selector */
.wd-learning-path-selector {
  background: var(--wd-white);
  border-radius: var(--wd-border-radius);
  padding: var(--wd-spacing-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.wd-path-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--wd-spacing-md);
  margin-top: var(--wd-spacing-md);
}

.wd-path-option {
  padding: var(--wd-spacing-md);
  border: 2px solid var(--wd-gray-200);
  border-radius: var(--wd-border-radius);
  cursor: pointer;
  transition: var(--wd-transition);
  background: var(--wd-white);
}

.wd-path-option:hover {
  border-color: var(--wd-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.wd-path-option.wd-active {
  border-color: var(--wd-accent);
  background: rgba(217, 119, 6, 0.05);
}

.wd-path-icon {
  font-size: 2.5rem;
  color: var(--wd-accent);
  margin-bottom: var(--wd-spacing-sm);
}

.wd-path-title {
  font-size: 1.25rem;
  margin-bottom: var(--wd-spacing-xs);
}

.wd-path-description {
  font-size: 0.95rem;
  color: var(--wd-text-secondary);
}

.wd-path-result {
  margin-top: var(--wd-spacing-md);
  padding: var(--wd-spacing-md);
  background: var(--wd-gray-100);
  border-radius: var(--wd-border-radius);
  display: none;
}

.wd-path-result.wd-show {
  display: block;
  animation: wd-fadeIn 0.5s ease-out;
}

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

/* Timeline */
.wd-timeline {
  position: relative;
  padding: var(--wd-spacing-md) 0;
}

.wd-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--wd-gray-300);
}

.wd-timeline-item {
  margin-bottom: var(--wd-spacing-lg);
  position: relative;
}

.wd-timeline-item:nth-child(odd) .wd-timeline-content {
  margin-left: auto;
  text-align: right;
}

.wd-timeline-content {
  width: 45%;
  background: var(--wd-white);
  padding: var(--wd-spacing-md);
  border-radius: var(--wd-border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wd-timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--wd-accent);
  border: 4px solid var(--wd-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--wd-gray-200);
}

/* Quote Carousel */
.wd-quote-carousel {
  position: relative;
  overflow: hidden;
  padding: var(--wd-spacing-lg) 0;
}

.wd-quote-slide {
  display: none;
  text-align: center;
  padding: var(--wd-spacing-md);
}

.wd-quote-slide.wd-active-slide {
  display: block;
  animation: wd-fadeIn 1s ease-out;
}

.wd-quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--wd-dark);
  margin-bottom: var(--wd-spacing-md);
  font-style: italic;
}

.wd-quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--wd-text-muted);
  font-weight: 500;
}

.wd-carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--wd-spacing-xs);
  margin-top: var(--wd-spacing-md);
}

.wd-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wd-gray-300);
  cursor: pointer;
  transition: var(--wd-transition);
}

.wd-carousel-dot.wd-active-dot {
  background: var(--wd-accent);
  transform: scale(1.2);
}

/* Manifesto Section */
.wd-manifesto {
  background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
  color: var(--wd-white);
  padding: var(--wd-spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.wd-manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/ab.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.wd-manifesto-content {
  position: relative;
  z-index: 2;
}

.wd-manifesto h2 {
  color: var(--wd-white);
}

.wd-manifesto p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.wd-manifesto-list {
  list-style: none;
  margin-top: var(--wd-spacing-md);
}

.wd-manifesto-list li {
  padding: var(--wd-spacing-sm) 0;
  padding-left: var(--wd-spacing-md);
  position: relative;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
}

.wd-manifesto-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--wd-accent);
  font-weight: bold;
}

/* Skills Development Visual */
.wd-skills-development {
  background: var(--wd-white);
  padding: var(--wd-spacing-lg);
  border-radius: var(--wd-border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.wd-skill-stage {
  padding: var(--wd-spacing-md);
  margin-bottom: var(--wd-spacing-md);
  border-left: 4px solid var(--wd-accent);
  background: var(--wd-gray-100);
  border-radius: 0 var(--wd-border-radius) var(--wd-border-radius) 0;
  transition: var(--wd-transition);
}

.wd-skill-stage:hover {
  background: var(--wd-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateX(8px);
}

.wd-skill-stage-title {
  font-size: 1.5rem;
  color: var(--wd-primary);
  margin-bottom: var(--wd-spacing-xs);
}

.wd-skill-stage-duration {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--wd-accent);
  font-weight: 600;
  margin-bottom: var(--wd-spacing-xs);
}

.wd-skill-stage-description {
  color: var(--wd-text-secondary);
}

/* SVG Dividers */
.wd-svg-divider {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Pricing Box */
.wd-pricing-box {
  background: var(--wd-white);
  border: 2px solid var(--wd-accent);
  border-radius: var(--wd-border-radius);
  padding: var(--wd-spacing-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: var(--wd-transition);
}

.wd-pricing-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.wd-pricing-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wd-accent);
  font-weight: 600;
  margin-bottom: var(--wd-spacing-sm);
}

.wd-pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--wd-primary);
  margin-bottom: var(--wd-spacing-sm);
}

.wd-pricing-description {
  color: var(--wd-text-secondary);
  margin-bottom: var(--wd-spacing-md);
}

.wd-pricing-features {
  list-style: none;
  margin-bottom: var(--wd-spacing-md);
  text-align: left;
}

.wd-pricing-features li {
  padding: var(--wd-spacing-xs) 0;
  color: var(--wd-text-secondary);
  position: relative;
  padding-left: var(--wd-spacing-md);
}

.wd-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wd-accent);
  font-weight: bold;
}

/* Footer */
.wd-footer {
  background: var(--wd-dark);
  color: var(--wd-white);
  padding: var(--wd-spacing-xl) 0 var(--wd-spacing-md);
}

.wd-footer h5 {
  color: var(--wd-white);
  font-size: 1.25rem;
  margin-bottom: var(--wd-spacing-md);
}

.wd-footer-link {
  color: var(--wd-gray-300);
  text-decoration: none;
  display: block;
  padding: var(--wd-spacing-xs) 0;
  transition: var(--wd-transition);
  font-size: 1rem;
}

.wd-footer-link:hover {
  color: var(--wd-accent);
  padding-left: var(--wd-spacing-xs);
}

.wd-footer-social {
  display: flex;
  gap: var(--wd-spacing-sm);
  margin-top: var(--wd-spacing-md);
}

.wd-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--wd-white);
  transition: var(--wd-transition);
  text-decoration: none;
}

.wd-social-icon:hover {
  background: var(--wd-accent);
  transform: translateY(-4px);
}

.wd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--wd-spacing-lg);
  padding-top: var(--wd-spacing-md);
  text-align: center;
  color: var(--wd-gray-300);
  font-size: 0.9rem;
}

/* Contact Form */
.wd-contact-form {
  background: var(--wd-white);
  padding: var(--wd-spacing-lg);
  border-radius: var(--wd-border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.wd-form-group {
  margin-bottom: var(--wd-spacing-md);
}

.wd-form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: var(--wd-spacing-xs);
  color: var(--wd-text-primary);
}

.wd-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', serif;
  font-size: 1rem;
  border: 2px solid var(--wd-gray-300);
  border-radius: var(--wd-border-radius);
  transition: var(--wd-transition);
  background: var(--wd-white);
  color: var(--wd-text-primary);
}

.wd-form-control:focus {
  outline: none;
  border-color: var(--wd-accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.wd-form-control.wd-error {
  border-color: #dc2626;
}

.wd-form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: var(--wd-spacing-xs);
  display: none;
}

.wd-form-error.wd-show {
  display: block;
}

/* Map Container */
.wd-map-container {
  border-radius: var(--wd-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 400px;
}

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

/* Contact Info Box */
.wd-contact-info-box {
  background: var(--wd-gray-100);
  padding: var(--wd-spacing-lg);
  border-radius: var(--wd-border-radius);
  height: 100%;
}

.wd-contact-info-item {
  margin-bottom: var(--wd-spacing-md);
  display: flex;
  align-items: start;
  gap: var(--wd-spacing-sm);
}

.wd-contact-info-icon {
  font-size: 1.5rem;
  color: var(--wd-accent);
  flex-shrink: 0;
}

.wd-contact-info-content h5 {
  font-size: 1.125rem;
  margin-bottom: var(--wd-spacing-xs);
  color: var(--wd-primary);
}

.wd-contact-info-content p {
  margin: 0;
  color: var(--wd-text-secondary);
}

/* Article Longform Layout */
.wd-article-longform {
  max-width: 800px;
  margin: 0 auto;
}

.wd-article-header {
  margin-bottom: var(--wd-spacing-lg);
  text-align: center;
}

.wd-article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--wd-text-muted);
  margin-bottom: var(--wd-spacing-sm);
}

.wd-article-image {
  width: 100%;
  height: auto;
  border-radius: var(--wd-border-radius);
  margin: var(--wd-spacing-lg) 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.wd-article-content h2 {
  margin-top: var(--wd-spacing-lg);
  margin-bottom: var(--wd-spacing-md);
}

.wd-article-content h3 {
  margin-top: var(--wd-spacing-md);
  margin-bottom: var(--wd-spacing-sm);
}

.wd-article-content p {
  margin-bottom: var(--wd-spacing-md);
  line-height: 1.9;
}

.wd-article-content ul,
.wd-article-content ol {
  margin-bottom: var(--wd-spacing-md);
  padding-left: var(--wd-spacing-md);
}

.wd-article-content li {
  margin-bottom: var(--wd-spacing-sm);
  color: var(--wd-text-secondary);
}

/* Course Page Layout */
.wd-course-hero {
  
  background: url("../images/bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--wd-white);
  padding: var(--wd-spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.wd-course-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--wd-primary) 0%, var(--wd-secondary) 100%);
  opacity: 0.8;
}

.wd-card.sticky-top{
  height: auto;
}

.wd-course-hero-content {
  position: relative;
  z-index: 2;
}

.wd-course-hero h1 {
  color: var(--wd-white);
}

.wd-course-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.wd-course-image-feature {
  width: 100%;
  height: auto;
  border-radius: var(--wd-border-radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--wd-spacing-lg);
}

.wd-curriculum-list {
  list-style: none;
  margin-top: var(--wd-spacing-md);
}

.wd-curriculum-item {
  padding: var(--wd-spacing-md);
  margin-bottom: var(--wd-spacing-sm);
  background: var(--wd-gray-100);
  border-radius: var(--wd-border-radius);
  border-left: 4px solid var(--wd-accent);
  transition: var(--wd-transition);
}

.wd-curriculum-item:hover {
  background: var(--wd-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateX(8px);
}

.wd-curriculum-item h4 {
  font-size: 1.25rem;
  margin-bottom: var(--wd-spacing-xs);
  color: var(--wd-primary);
}

.wd-curriculum-item p {
  margin: 0;
  color: var(--wd-text-secondary);
}

.wd-disclaimer-box {
  background: rgba(217, 119, 6, 0.05);
  border: 2px solid var(--wd-accent);
  border-radius: var(--wd-border-radius);
  padding: var(--wd-spacing-md);
  margin: var(--wd-spacing-lg) 0;
}

.wd-disclaimer-box h4 {
  color: var(--wd-accent);
  margin-bottom: var(--wd-spacing-sm);
}

/* Legal Pages */
.wd-legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.wd-legal-content h2 {
  margin-top: var(--wd-spacing-lg);
  margin-bottom: var(--wd-spacing-md);
  padding-top: var(--wd-spacing-md);
  border-top: 1px solid var(--wd-gray-200);
}

.wd-legal-content h3 {
  margin-top: var(--wd-spacing-md);
  margin-bottom: var(--wd-spacing-sm);
}

.wd-legal-content p,
.wd-legal-content li {
  line-height: 1.8;
}

.wd-legal-content ul,
.wd-legal-content ol {
  margin-bottom: var(--wd-spacing-md);
  padding-left: var(--wd-spacing-lg);
}

/* Cookie Consent Banner */
.wd-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wd-dark);
  color: var(--wd-white);
  padding: var(--wd-spacing-md);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.wd-cookie-banner.wd-show {
  display: block;
  animation: wd-slideUp 0.5s ease-out;
}

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

.wd-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wd-spacing-md);
  flex-wrap: wrap;
}

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

.wd-cookie-text p {
  margin: 0;
  color: var(--wd-gray-300);
  font-size: 0.95rem;
}

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

.wd-cookie-actions {
  display: flex;
  gap: var(--wd-spacing-sm);
}

.wd-btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .wd-timeline::before {
    left: 30px;
  }
  
  .wd-timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    text-align: left !important;
  }
  
  .wd-timeline-marker {
    left: 30px;
  }
  
  .wd-article-card {
    flex-direction: column;
  }
  
  .wd-article-card-image {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .wd-section {
    padding: var(--wd-spacing-lg) 0;
  }
  
  .wd-btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
  
  .wd-quote-text {
    font-size: 1.5rem;
  }
  
  .wd-pricing-amount {
    font-size: 2.5rem;
  }
}

/* Utility Classes */
.wd-text-center {
  text-align: center;
}

.wd-text-primary {
  color: var(--wd-primary);
}

.wd-text-accent {
  color: var(--wd-accent);
}

.wd-bg-light {
  background-color: var(--wd-light);
}

.wd-bg-gray {
  background-color: var(--wd-gray-100);
}

.wd-mb-lg {
  margin-bottom: var(--wd-spacing-lg);
}

.wd-mt-lg {
  margin-top: var(--wd-spacing-lg);
}

.wd-py-xl {
  padding-top: var(--wd-spacing-xl);
  padding-bottom: var(--wd-spacing-xl);
}




.wd-nav-brand img{
    max-width: 80px;
    width: 80px;
    object-fit: contain;
    aspect-ratio: 1/1;
}

html{
    overflow-x: hidden;
}


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

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