/* ==========================================================================
   EasyCut PRO — CSS Design System & Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --primary-hsl: 239, 84%, 67%;
    --primary: hsl(var(--primary-hsl));
    --primary-light: hsl(239, 84%, 75%);
    --primary-glow: rgba(99, 102, 241, 0.15);
    
    --accent-hsl: 38, 92%, 50%;
    --accent: hsl(var(--accent-hsl));
    --accent-light: hsl(38, 92%, 60%);
    --accent-glow: rgba(245, 158, 11, 0.15);
    
    /* Backgrounds */
    --bg-dark: #070913;
    --bg-deep: #0D1121;
    --bg-card: rgba(17, 22, 40, 0.7);
    --bg-nav: rgba(7, 9, 19, 0.8);
    
    /* Borders & Accents */
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-active: rgba(99, 102, 241, 0.3);
    
    /* Status Colors */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.1);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.1);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Fonts */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Animation & Transitions */
    --ease-spring: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-glow: 0 15px 45px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Reusable Styles & Utility Classes
   ========================================================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-pill);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    font-family: var(--font-title);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* ==========================================================================
   Navigation Bar (Sticky Glassmorphic)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 0;
    transition: background var(--transition-normal), padding var(--transition-normal);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.logo-badge {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-left: 4px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-active);
}

.nav-cta {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 10px;
}

/* ==========================================================================
   Hero Section & Interactive Screen Showcase
   ========================================================================== */
.hero-section {
    padding: 140px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Premium App Badges mimicking official designs */
.store-badge {
    background: #0d0f17;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 165px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.store-badge::before {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.4rem;
    float: left;
    margin-right: 12px;
}

.store-badge.app-store::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: -4px; /* Fixed syntax error */
  background-color: #ffffff;
  /* Universal Apple SVG path */
  clip-path: path("M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M15.97 4.17c.66-.81 1.11-1.93.99-3.06-1 .04-2.13.67-2.85 1.49-.62.7-1.16 1.84-1.01 2.96 1.07.08 2.21-.58 2.87-1.39z");
}

.store-badge.google-play::before {
    content: "▶";
    color: var(--accent);
    font-size: 1.3rem;
}

.store-badge:hover {
    background: #141724;
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.store-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.store-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

/* Hero Mockup Area & Glowing Orbs */
.hero-mockup-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glow-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-sphere.color-1 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -50px;
    left: -50px;
}

.glow-sphere.color-2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: -50px;
    right: -50px;
}

/* iPhone Frame Mockup Stylings */
.phone-frame {
    width: 320px;
    height: 650px;
    background: #090b14;
    border: 12px solid #1c2035;
    border-radius: 46px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 4px rgba(255, 255, 255, 0.05), var(--shadow-glow);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-slow) var(--ease-spring);
    animation: floatAnimation 6s ease-in-out infinite;
}

.phone-frame:hover {
    transform: scale(1.02) rotate(1deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #1c2035;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-screen-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #070913;
}

.mockup-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
}

.mockup-img.active {
    opacity: 1;
    z-index: 2;
}

/* Indicators dots */
.mockup-selectors {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.selector-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.selector-dot.active {
    background: var(--primary-light);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary);
}

/* Floating Mockup Animation */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================================================
   Interactive Yield Optimization Section
   ========================================================================== */
.demo-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-deep));
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Glassmorphism Cards */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.demo-card.before:hover {
    border-color: rgba(239, 68, 68, 0.2);
}

.demo-card.after {
    position: relative;
    border-color: rgba(99, 102, 241, 0.15);
}

.demo-card.after::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.demo-card.after:hover {
    box-shadow: var(--shadow-glow);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.card-status-badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-status-badge.status-bad {
    background: var(--error-bg);
    color: var(--error);
}

.card-status-badge.status-good {
    background: var(--success-bg);
    color: var(--success);
}

.card-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
}

.card-unit {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Interactive board layouts using clean grids */
.board-visualizer {
    height: 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.board-visualizer.bad-board {
    border-color: rgba(239, 68, 68, 0.2);
}

.board-visualizer.good-board {
    border-color: rgba(16, 185, 129, 0.2);
}

/* CSS Drawn Visual Pieces mimicking board cuts */
.visual-part {
    position: absolute;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.part-bad-1 { background: rgba(245, 158, 11, 0.25); color: var(--accent-light); }
.part-bad-2 { background: rgba(245, 158, 11, 0.25); color: var(--accent-light); }
.part-bad-3 { background: rgba(245, 158, 11, 0.25); color: var(--accent-light); }
.part-bad-4 { background: rgba(245, 158, 11, 0.25); color: var(--accent-light); }

.part-good {
    background: rgba(99, 102, 241, 0.25);
    color: var(--primary-light);
    border-color: rgba(99, 102, 241, 0.4);
}

.waste-area {
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgba(239, 68, 68, 0.15),
        rgba(239, 68, 68, 0.15) 10px,
        rgba(239, 68, 68, 0.05) 10px,
        rgba(239, 68, 68, 0.05) 20px
    );
    border: 1px dashed rgba(239, 68, 68, 0.3);
    color: var(--error);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.scrap-area {
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.08) 5px,
        rgba(255, 255, 255, 0.02) 5px,
        rgba(255, 255, 255, 0.02) 10px
    );
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Card Detail Checklist */
.card-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-details-list li {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-section {
    padding: 100px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-active);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.feature-card-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   How It Works Vertical Timeline
   ========================================================================== */
.how-section {
    padding: 100px 24px;
    background: var(--bg-deep);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Line connecting steps */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    background: #0e1224;
    border: 2px solid var(--primary-light);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    z-index: 5;
    transition: all var(--transition-normal);
}

.timeline-item:nth-child(2) .timeline-number {
    border-color: hsl(138, 84%, 60%);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.timeline-item:nth-child(3) .timeline-number {
    border-color: var(--accent-light);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 30px;
}

.timeline-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-text {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-active);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon-arrow {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform var(--transition-normal);
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Open State classes handled by JS */
.faq-item.open .faq-question {
    color: var(--primary-light);
}

.faq-item.open .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--primary-light);
}

.faq-item.open .faq-answer {
    padding-bottom: 24px;
}

/* ==========================================================================
   Footer Area
   ========================================================================== */
.footer {
    background: #03050B;
    border-top: 1px solid var(--border-glass);
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
}

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

.footer-links h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

#copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Media Queries & Responsive Styling
   ========================================================================== */

/* Tablet Optimization */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Portrait Optimization */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none; /* Hide standard links on small screens */
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .phone-frame {
        width: 280px;
        height: 570px;
    }
    
    .board-visualizer {
        height: 180px;
    }
    
    .demo-card {
        padding: 24px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .timeline-item {
        padding-left: 55px;
    }
}
