/* static/index-style.css */

/* 1. Typography & Global Overrides */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* Main container overrides for the scrolling homepage */
.main-container {
    height: auto !important;
    min-height: 100vh;
    padding-bottom: 4rem;
    overflow-y: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
    box-sizing: border-box;
    text-align: center;
    /* Kept the very subtle glow, but made it lighter */
    background: radial-gradient(80% 50% at 50% -20%, rgba(147, 51, 234, 0.08), rgba(59, 130, 246, 0.05), transparent);
}

/* Ensure Poppins font takes precedence */
body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #FFFFFF;
    /* Changed back to pure white base */
    color: #111827;
}

/* Hero Typography */
.main-headline {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 3.5rem;
    line-height: 1.25;
    background: linear-gradient(180deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    padding-bottom: 0.1em;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #6B7280;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* CTA Wrapper & Start Chat Button */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.start-chat-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #3B82F6, #9333EA);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.start-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sub-cta {
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* 2. Hero Video Styles */
.hero-video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.video-placeholder-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #F3F4F6;
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #f9fafb, #e5e7eb);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.play-icon-backdrop {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.video-placeholder-container:hover .play-icon-backdrop {
    transform: scale(1.1);
}

.play-button-overlay span {
    font-weight: 600;
    color: #374151;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 3. Apple-style Sections (Used for Superpowers) */
.apple-section {
    padding: 6rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

/* --- 4. The Bento Grid System --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(320px, auto);
        /* Enforce a minimum height for nice proportions */
    }

    .span-2 {
        grid-column: span 2;
    }

    .span-3 {
        grid-column: span 3;
    }

    .span-1 {
        grid-column: span 1;
    }

    .tall-card {
        grid-row: span 2;
    }
}

/* --- 5. Bento Cards Styling --- */
.bento-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes content to edges */
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

/* Icons */
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.gradient-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.gradient-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.gradient-mix {
    background: linear-gradient(135deg, #3B82F6, #9333EA);
}

/* Typography inside cards */
.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
    letter-spacing: -0.02em;
}

.bento-card p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-text-top {
    z-index: 2;
    /* Ensure text sits above any background graphics */
}

/* --- 6. Mockups (The Magic Part) --- */

/* General Mockup Container */
.mockup-container {
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* 6a. Chat Mockup (Matches your screenshot) */
.chat-mockup {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(to bottom, #F9FAFB, #FFFFFF);
    border: 1px solid #E5E7EB;
}

.mockup-message {
    max-width: 90%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border-radius: 12px;
    position: relative;
}

/* User Bubble: Gradient Blue/Purple */
/* Update in static/index-style.css */

.mockup-message.user {
    align-self: flex-end;
    /* This creates the left-to-right Blue -> Purple fade */
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: white;
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    /* Colored shadow */
}

.mockup-message.user p {
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Bot Bubble: White with Border */
.mockup-message.bot {
    align-self: flex-start;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-top-left-radius: 2px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.bot-icon img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.mockup-message.bot p {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}


/* 6b. Graph Mockup (Market Insights) */
.graph-mockup {
    height: 180px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: white;
    /* Clean look */
}

.graph-header {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.graph-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6B7280;
}

.highlight-pill {
    background: #EFF6FF;
    color: #2563EB !important;
    padding: 4px 8px;
    border-radius: 99px;
    font-size: 0.75rem !important;
}

.graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 8px;
}

.bar {
    flex: 1;
    background: #F3F4F6;
    border-radius: 4px;
    transition: height 1s ease;
}

.bar.active {
    background: linear-gradient(to top, #9333EA, #A855F7);
    box-shadow: 0 4px 10px rgba(147, 51, 234, 0.2);
}

/* 6c. Table Mockup (Comparison) */
.card-content-row {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media(min-width: 768px) {
    .card-content-row {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .text-side {
        flex: 1;
    }

    .table-mockup {
        flex: 1.2;
        margin-top: 0;
    }
}

.table-mockup {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Let rows touch edges */
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.9rem;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.head {
    background: #F9FAFB;
    color: #9CA3AF;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.fw-bold {
    font-weight: 600;
    color: #111827;
}

.tag-green {
    background: #F0FDF4;
    color: #16A34A;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    width: fit-content;
}

/* 7. Comparison Section - BACK TO CLEAN LIGHT THEME */
.comparison-section {
    width: 100%;
    background: #FFFFFF;
    /* Pure White */
    color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
    padding: 6rem 1.5rem;
}

.comparison-section .section-title {
    color: #111827;
    /* Dark text again */
    margin-bottom: 3rem;
    text-align: center;
}

.clean-table-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    /* Soft, professional shadow */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #E5E7EB;
    width: 100%;
    max-width: 900px;
}

.clean-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
}

.clean-table th {
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
    /* Very light gray header */
    color: #6B7280;
    font-weight: 600;
}

.clean-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #F3F4F6;
    font-size: 1rem;
    color: #374151;
}

.clean-table tr:last-child td {
    border-bottom: none;
}

.propy-head {
    color: #2563EB;
}

/* Propy Blue */
.feature-head {
    color: #111827;
}

.dimmed {
    color: #9CA3AF;
    text-decoration: line-through;
    text-decoration-color: #E5E7EB;
}

.highlight {
    color: #111827;
    font-weight: 600;
}

.check-icon {
    color: #10B981;
    /* Green */
    margin-right: 8px;
}

/* 8. Bottom Content Sections (Clean & Neutral) */
.more-content-section {
    padding: 5rem 1.5rem;
    text-align: center;
    width: 100%;
}

.more-content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
    text-align: center;
}

/* Backgrounds - Simplified to White & Soft Gray */
/* --- UPDATED: HOW IT WORKS & ABOUT SECTIONS --- */

/* Shared Container for better max-width control */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* 1. How It Works - Process Cards */
#how-it-works {
    background-color: #FFFFFF;
    padding: 6rem 1.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    background: #F9FAFB;
    /* Subtle grey background */
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    /* Better readability */
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
    border-color: #E5E7EB;
}

/* The Number Badges (1, 2, 3) */
.step-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.process-content p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

/* 2. About Us - Split Layout */
#about-us {
    background: #F9FAFB;
    /* Distinct section background */
    padding: 6rem 1.5rem;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid-layout {
        grid-template-columns: 1.2fr 0.8fr;
        /* Text takes slightly more space */
        gap: 5rem;
    }
}

.about-text-content {
    text-align: left;
}

.about-text-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-content p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* The Visual Card on the Right */
.about-visual-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/* Decorative top gradient border */
.about-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #9333EA);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.visual-quote {
    position: relative;
}

.quote-mark {
    font-family: serif;
    font-size: 4rem;
    line-height: 1;
    color: #9333EA;
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}

.visual-quote p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.visual-stat {
    border-top: 1px solid #F3F4F6;
    padding-top: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(90deg, #3B82F6, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Utility to center section titles better */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#faq {
    background-color: #F9FAFB;
    /* Soft Gray (No more blue tint) */
    border-top: 1px solid #E5E7EB;
}

/* Features Grid */
.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background-color: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.simplified-card {
    text-align: center;
    border-color: #E5E7EB;
    padding: 2.5rem 2rem;
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.simplified-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.simplified-card p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.7;
}

/* About Us */
.about-us-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-us-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background-color: #FFFFFF;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    font-weight: 600;
    padding: 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-item summary:hover {
    background-color: #F9FAFB;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

/* 9. Footer */
.page-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 4rem 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .row-layout {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .text-side {
        flex: 1;
    }

    .glass-table-mockup {
        flex: 1;
    }
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9CA3AF;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-copyright {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #1F2937;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #6B7280;
}

/* 10. Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

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

/* 11. Responsive Utilities */
@media (max-width: 768px) {
    .row-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .glass-table-mockup {
        margin-top: 1rem;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .main-container {
        padding-top: 120px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .more-content-section {
        padding: 3rem 1.5rem;
    }

    .more-content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* --- Scroll Indicator & Spacing --- */
/* --- UPDATED HERO LAYOUT (Flexbox Centering) --- */

.main-container {
    /* 1. Define the full height */
    min-height: 100vh;

    /* 2. Account for fixed header (approx 80px) and bottom arrow space */
    padding-top: 80px;
    padding-bottom: 2rem;

    /* 3. Use Flexbox to layout children vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Horizontally center everything */
}

/* Wrapper for the Headlines & Buttons */
.hero-content {
    /* 4. MAGIC FIX: margin: auto consumes all available vertical space,
       perfectly centering this block between the header and the bottom arrow */
    margin: auto;

    width: 100%;
    max-width: 900px;
    padding: 0 1.5rem;
    text-align: center;
}

/* The Bottom Arrow */
.scroll-indicator {
    /* 5. Remove 'absolute' positioning to fix the alignment bug */
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;

    /* Styling */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: #3B82F6;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

/* Keep the animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}