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

:root {
    /* Light theme - Primary colors */
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --dark: #1f2937;
    
    /* Light theme - Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Light theme - Text and background */
    --text: #111827;
    --text-light: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border-color: #e5e7eb;
    
    /* Gradient colors for light theme */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-primary-dark: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Dark theme */
[data-theme="dark"] {
    /* Dark theme - Primary colors (adjusted for dark mode) */
    --primary: #60a5fa;
    --primary-light: #93c5fd;
    --primary-dark: #3b82f6;
    --secondary: #34d399;
    --dark: #1f2937;
    
    /* Dark theme - Grays (inverted) */
    --gray-50: #1f2937;
    --gray-100: #374151;
    --gray-200: #4b5563;
    --gray-300: #6b7280;
    --gray-400: #9ca3af;
    --gray-500: #d1d5db;
    --gray-600: #e5e7eb;
    --gray-700: #f3f4f6;
    --gray-800: #f9fafb;
    --gray-900: #ffffff;
    
    /* Dark theme - Text and background */
    --text: #f9fafb;
    --text-light: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --border-color: #4b5563;
    
    /* Gradient colors for dark theme */
    --gradient-primary: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    --gradient-primary-dark: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-hero: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    --gradient-accent: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: var(--gray-900);
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    h1 {
        font-size: 4rem;
    }
}

/* Cards */
.card {
    background: var(--bg-primary);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

[data-theme="dark"] .card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

/* Timeline (Single Column) */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gray-200) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    margin-left: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--bg-primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.timeline-content {
    margin-left: 0;
}

/* Timeline Alternating (Left-Right) */
.timeline-alternating {
    position: relative;
    padding: 2rem 0;
}

.timeline-alternating::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gray-200) 100%);
    transform: translateX(-50%);
}

.timeline-item-alt {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item-alt.left {
    margin-left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item-alt.right {
    margin-left: 50%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-item-alt .timeline-marker {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 1rem;
    right: -3.75rem;
}

.timeline-item-alt.left .timeline-marker {
    right: -3.75rem;
}

.timeline-item-alt.right .timeline-marker {
    left: -3.75rem;
    right: auto;
}

.timeline-card-inner {
    width: 100%;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    /* background: var(--gray-100); */
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.3s ease;
}

/* Dark theme support for social icons */
[data-theme="dark"] .social-icon {
    /* background: var(--gray-700); */
    /* color: var(--gray-300); */
}

[data-theme="dark"] .social-icon:hover {
    background: var(--primary);
    color: white;
}

/* Tech Groups */
.tech-group {
    transition: all 0.3s ease;
}

.tech-group:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.badge-skill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.badge-skill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

[data-theme="dark"] .badge-skill {
    background: var(--gray-700);
    color: var(--gray-300);
    border-color: var(--gray-600);
}

[data-theme="dark"] .badge-skill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--gray-900);
}

/* Achievements */
.achievement-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

[data-theme="dark"] .achievement-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .achievement-card:hover {
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

.achievement-image {
    margin-bottom: 1rem;
}

.achievement-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Background */
.bg-white { background-color: var(--bg-primary); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-900 { background-color: var(--gray-900); }

/* Theme Switcher Button */
.theme-switcher-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 0.5rem;
}

.theme-switcher-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary);
}

[data-theme="dark"] .theme-switcher-btn {
    border-color: var(--border-color);
    color: var(--text);
}

[data-theme="dark"] .theme-switcher-btn:hover {
    background: var(--gray-700);
    border-color: var(--primary);
}

.theme-switcher-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.theme-switcher-btn:hover svg {
    transform: rotate(20deg);
}

/* Text colors */
.text-white { color: white; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-primary { color: var(--primary); }

/* Font weights */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }

/* Text alignment */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Font sizes */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

[data-theme="dark"] .btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--gray-900);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Flex utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Line height */
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.625; }

/* Hover states */
.hover\:text-primary:hover { color: var(--primary); }

/* Sticky */
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

/* Header dark theme */
header {
    background: var(--bg-primary);
    border-color: var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] header {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

header a {
    color: var(--text-light);
}

header a:hover {
    color: var(--primary);
}

[data-theme="dark"] header a {
    color: var(--text-light);
}

[data-theme="dark"] header a:hover {
    color: var(--primary);
}

/* Hide .hidden utility */
.hidden {
    display: none !important;
}

/* Section Gradients for Light Theme */
/*
section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 244, 246, 0.7) 100%);
}

section:nth-child(even) {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(245, 245, 245, 0.9) 100%);
}
*/

/* Hero Section Enhancement */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(240, 147, 251, 0.95) 100%);
    z-index: -1;
}

/* Dark theme hero section adjustment */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #4c5aa3 0%, #5a3a7d 50%, #b566a8 100%) !important;
}

[data-theme="dark"] .hero-section::before {
    background: linear-gradient(135deg, rgba(76, 90, 163, 0.95) 0%, rgba(90, 58, 125, 0.95) 50%, rgba(181, 102, 168, 0.95) 100%);
}

/* Skill badges with gradient on hover */
.badge-skill {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.badge-skill:hover {
    background: var(--gradient-primary);
}

[data-theme="dark"] .badge-skill {
    background: linear-gradient(135deg, var(--gray-700), var(--gray-600));
}

[data-theme="dark"] .badge-skill:hover {
    background: var(--gradient-primary);
}

/* Card gradient backgrounds */
.card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(var(--bg-primary), 0.8) 100%);
}

[data-theme="dark"] .card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Achievement Card Gradient */
.achievement-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(var(--bg-primary), 0.85) 100%);
}

[data-theme="dark"] .achievement-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 0, 0, 0.15) 100%);
}

/* Icons */
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-40 { width: 10rem; }
.h-40 { height: 10rem; }
.w-full { width: 100%; }
.h-48 { height: 12rem; }

/* Transitions */
.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Italic */
.italic { font-style: italic; }

/* Prose for markdown content */
.prose {
    color: var(--text-light);
}

.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose ul, .prose ol {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose-sm {
    font-size: 0.875rem;
}

.prose-sm h3 {
    font-size: 1.125rem;
}

.max-w-none {
    max-width: none;
}

/* Border */
.border { border: 1px solid var(--gray-200); }
.border-4 { border-width: 4px; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Lists */
.list-disc {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-disc li {
  display: flex;
  align-items: flex-start;
}
.list-disc li::before {
  content: "•";
  flex-shrink: 0;
  width: 1.2em;
  display: inline-block;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

[data-theme="dark"] .mobile-menu-btn {
    color: var(--gray-400);
}

[data-theme="dark"] .mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-menu-btn svg {
    width: 1.75rem;
    height: 1.75rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: var(--bg-primary);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

[data-theme="dark"] .mobile-menu-content {
    background: var(--bg-secondary);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    color: var(--text);
    font-weight: 500;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--primary);
}

.mobile-lang-switcher {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.mobile-lang-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: var(--gray-100);
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mobile-lang-link.active {
    background: var(--primary);
    color: white;
}

.mobile-lang-link:hover {
    background: var(--primary-light);
    color: white;
}

[data-theme="dark"] .mobile-lang-link {
    background: var(--gray-700);
    color: var(--text);
}

/* Desktop Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    /* background: var(--gray-100); */
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .lang-switcher {
    /* background: var(--gray-700); */
}

.lang-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--primary);
    background: var(--bg-primary);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .lang-btn {
    color: var(--text-light);
}

[data-theme="dark"] .lang-btn:hover {
    color: var(--primary);
    background: var(--gray-800);
}

[data-theme="dark"] .lang-btn.active {
    background: var(--primary);
    color: var(--gray-900);
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Show mobile menu button, hide desktop menu */
    .mobile-menu-btn {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-32 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Timeline Alternating - Mobile Layout */
    .timeline-alternating::before {
        left: 1rem;
        transform: none;
    }

    .timeline-item-alt {
        width: 100%;
        margin-left: 0 !important;
        text-align: left !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }

    .timeline-item-alt.left,
    .timeline-item-alt.right {
        width: 100%;
        margin-left: 0;
        text-align: left;
        padding-left: 3rem;
        padding-right: 0;
    }

    .timeline-item-alt .timeline-marker,
    .timeline-item-alt.left .timeline-marker,
    .timeline-item-alt.right .timeline-marker {
        left: 0.25rem;
        right: auto;
    }

    .timeline-content-alt {
        text-align: left;
    }

    .timeline-card-inner,
    .timeline-card-inner * {
        text-align: left !important;
    }

    /* Card padding adjustment */
    .card {
        padding: 1.25rem;
    }

    /* Margins */
    .mb-16 {
        margin-bottom: 2.5rem;
    }

    .mb-24 {
        margin-bottom: 4rem;
    }

    /* Grid adjustments */
    .grid {
        gap: 1.25rem;
    }
}