/* ==========================================================================
   JOYVENT WEBSITE DESIGN SYSTEM - STYLESHEET (style.css)
   ========================================================================== */

/* 1. CSS VARIABLES (DESIGN SYSTEM TOKENS) */
:root {
    /* Colors */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #3b82f6;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-headings: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Border Radii */
    --radius-btn: 8px;
    --radius-input: 8px;
    --radius-card: 12px;
    --radius-modal: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);

    /* Spacing & Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. PREFERS REDUCED MOTION (ACCESSIBILITY) */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* CUSTOM FOCUS RING FOR ACCESSIBILITY (:FOCUS-VISIBLE) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-joy:focus-visible,
.nav-link:focus-visible,
.navbar-brand:focus-visible,
.accordion-button:focus-visible,
.footer-social-link:focus-visible {
    outline: 3px solid var(--secondary) !important;
    outline-offset: 2px !important;
    box-shadow: none !important;
}

/* 3. BASE STYLES & TYPOGRAPHY */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem; /* 40px */
}

h2 {
    font-size: 2rem; /* 32px */
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem; /* 20px */
    letter-spacing: -0.01em;
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem; /* 48px */
    }
    h2 {
        font-size: 2.25rem; /* 36px */
    }
}

/* Paragraphs & Links */
p {
    margin-bottom: 1.25rem;
}

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

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

/* 4. UTILITIES & CONTAINER STYLING */
.section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

@media (min-width: 992px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

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

.max-width-container {
    max-width: 1200px;
}

/* 5. NAVIGATION BAR (GLASSMORPHISM) */
.navbar-joy {
    height: 72px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
    z-index: 1030;
}

.navbar-joy.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand-joy {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand-joy span {
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-toggler-joy {
    border: none;
    padding: 0;
}

.navbar-toggler-joy:focus {
    box-shadow: none;
}

/* 6. BUTTON DESIGN */
.btn-joy {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-joy-primary {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-joy-primary:hover,
.btn-joy-primary:focus {
    background-color: var(--primary-hover);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-joy-secondary {
    background-color: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid transparent;
}

.btn-joy-secondary:hover,
.btn-joy-secondary:focus {
    background-color: var(--border);
    color: var(--text-primary);
}

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

.btn-joy-outline:hover,
.btn-joy-outline:focus {
    background-color: var(--bg-light);
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-joy-ghost {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-joy-ghost:hover,
.btn-joy-ghost:focus {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

.btn-joy:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* 7. CARD DESIGN */
.card-joy {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-joy-interactive:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.card-joy .card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* 8. HERO SECTION */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 4.5rem;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%), var(--bg);
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 9rem;
        padding-bottom: 7rem;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-illustration-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 520px;
    height: auto;
}

/* 9. WHY CHOOSE SECTION */
.why-choose-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.why-choose-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.why-choose-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* 10. HOW IT WORKS SECTION */
.step-card {
    position: relative;
    text-align: center;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    height: 100%;
    transition: var(--transition-normal);
}

.step-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary);
}

.step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

/* 11. UPCOMING EVENTS */
.event-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--bg-light);
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

.event-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.event-meta i {
    color: var(--primary);
}

.event-price {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 12. FAQ ACCORDION CUSTOMIZATION */
.accordion-joy .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-card) !important;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: var(--surface);
    transition: var(--transition-fast);
}

.accordion-joy .accordion-item:hover {
    border-color: var(--secondary);
}

.accordion-joy .accordion-button {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
    padding: 20px 24px;
    background-color: var(--surface);
    border: none;
    box-shadow: none;
}

.accordion-joy .accordion-button:not(.collapsed) {
    color: var(--primary);
    border-bottom: 1px solid var(--border);
}

.accordion-joy .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23475569'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-joy .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-joy .accordion-body {
    padding: 20px 24px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* 13. CALL TO ACTION SECTION */
.cta-section {
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%), var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-title {
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.25rem auto;
}

/* 14. FOOTER STYLING */
.footer-joy {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: 0.875rem;
}

.footer-brand {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-brand span {
    color: var(--primary);
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-headings);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.footer-contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* ==========================================================================
   15. MOBILE & TABLET LAYOUT FIXES (320px, 360px, 390px, 430px)
   ========================================================================== */

/* Navbar Hamburger Menu Collapse Enhancements */
@media (max-width: 991.98px) {
    .navbar-joy {
        height: auto !important;
        min-height: 72px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .navbar-joy .navbar-collapse {
        background-color: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-card);
        padding: 20px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: var(--radius-btn);
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--bg-light);
    }
}

/* Mobile Devices Optimization (max-width: 575.98px) */
@media (max-width: 575.98px) {
    /* Base Typography adjustments for mobile readability */
    h1 {
        font-size: 1.875rem !important; /* ~30px */
        line-height: 1.3 !important;
        letter-spacing: -0.02em !important;
    }
    
    h2 {
        font-size: 1.5rem !important; /* ~24px */
        line-height: 1.35 !important;
    }
    
    h3 {
        font-size: 1.125rem !important; /* ~18px */
    }
    
    /* Section spacing */
    .section-padding {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
    
    /* Hero Section Mobile Polish */
    .hero-section {
        padding-top: 5.5rem !important;
        padding-bottom: 3.5rem !important;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.75rem !important;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5 !important;
    }
    
    .hero-section .btn-joy {
        width: 100%; /* Stacks beautifully and easy to tap */
    }
    
    .hero-illustration-wrapper {
        margin-top: 2rem !important;
    }
    
    /* Card Padding & Sizing */
    .card-joy {
        padding: 20px !important;
    }
    
    .step-card {
        padding: 24px 16px !important;
    }
    
    /* Accordion FAQ Spacing */
    .accordion-joy .accordion-button {
        padding: 16px 20px !important;
        font-size: 0.9375rem !important;
        line-height: 1.4 !important;
    }
    
    .accordion-joy .accordion-body {
        padding: 16px 20px !important;
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }
    
    /* Footer Spacing & Text Centering */
    .footer-joy {
        padding-top: 3.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .footer-social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-joy .col-lg-4 {
        text-align: center;
    }
    
    .footer-bottom {
        margin-top: 2.5rem !important;
        padding-top: 1.5rem !important;
        text-align: center;
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .footer-bottom .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
}

/* ==========================================================================
   16. ABOUT US PAGE SPECIFIC STYLES (TIMELINE, ETC.)
   ========================================================================== */
.timeline-joy {
    position: relative;
    padding-left: 32px;
    list-style: none;
    margin: 0;
}

.timeline-joy::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

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

.timeline-marker {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--surface);
    border: 3px solid var(--primary);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-marker {
    background-color: var(--primary);
    transform: scale(1.2);
}

.timeline-content {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary);
}

.timeline-year {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

@media (max-width: 575.98px) {
    .timeline-joy {
        padding-left: 20px;
    }
    
    .timeline-joy::before {
        left: 5px;
    }
    
    .timeline-marker {
        left: -20px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .timeline-content {
        padding: 16px !important;
    }
}

/* ==========================================================================
   17. FAQ PAGE SPECIFIC STYLES (SEARCH INPUT, PILLS, GROUP HEADINGS)
   ========================================================================== */
.faq-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.faq-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.faq-category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.faq-category-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    cursor: pointer;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.faq-group-title {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    border-left: 4px solid var(--primary);
    padding-left: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-group-title:first-of-type {
    margin-top: 0;
}

/* ==========================================================================
   18. CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.form-control-joy {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    background-color: var(--surface);
}

.form-control-joy:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

textarea.form-control-joy {
    min-height: 120px;
    resize: vertical;
}

.quick-help-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.quick-help-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.quick-help-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.quick-help-title {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.quick-help-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==========================================================================
   19. LEGAL PAGES SPECIFIC STYLES (PRIVACY, TERMS, REFUND)
   ========================================================================== */
.legal-content {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content h2 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul, 
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ==========================================================================
   20. 404 PAGE SPECIFIC STYLES
   ========================================================================== */
.error-code {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.error-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.error-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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






