/* Timeline Section */
.timeline-section {
    max-width: 80vw;  /* ✅ Keep it within 80% of the viewport */
    margin: 0 auto;    /* ✅ Center the section horizontally */
    text-align: left;  /* ✅ Align text left for better readability */
    padding-bottom: 20px; /* ✅ Spacing before the bottom border */
    border-bottom: 1px solid #00a8ac; /* ✅ 1px turquoise line */
}

/* H2 Title */
.timeline-section h2 {
    text-align: center;  /* ✅ Center title */
    padding-top: 20px;   /* ✅ Add space above */
    padding-bottom: 15px; /* ✅ Add space below */
}

/* Introduction Paragraph */
.timeline-intro {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #282828;
    margin-bottom: 10px; /* ✅ Space below the intro */
}

/* Timeline Flexbox - Aligns Dates & Milestones */
.timeline-flexbox {
    display: flex;
    align-items: flex-start; /* ✅ Aligns text properly */
    justify-content: space-between; /* ✅ Ensures spacing between columns */
    max-width: 80vw; /* ✅ Maintain consistent width */
    margin: 0 auto; /* ✅ Centers horizontally */
    padding-top: 0px;
}

/* Left Column: Timeline Dates */
.timeline-dates {
    flex: 1;  /* ✅ Takes up equal space */
    padding-left: 100px; /* ✅ Small padding */
    list-style-type: disc; /* ✅ Default bullet style */
}

/* Right Column: Timeline Milestones */
.timeline-milestones {
    flex: 1;  /* ✅ Takes up equal space */
    padding-left: 20px; /* ✅ Adds spacing between lists */
    list-style: none; /*  Remove bullets */
}

/* List Items - General Styling */
.timeline-dates li, 
.timeline-milestones li {
    font-family: 'Roboto', sans-serif; /* ✅ Force Roboto font */
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #282828;
    margin-bottom: 5px; /* ✅ Adds spacing between items */
}

/* Ensure correct selection of the link inside .timeline-preorder-cta */
.timeline-section .timeline-container .timeline-preorder-cta a {
    font-weight: 500 !important; /* Make it BOLD */
    font-size: 18px !important;
    text-decoration: none !important;
    color: #007c89 !important; /* Turquoise color */
    border-bottom: 2px solid #007c89 !important; /* ✅ Strong underline effect */
    padding-bottom: 2px !important;
    transition: color 0.3s ease, border-bottom-color 0.3s ease !important;
}

/* Hover Effect */
.timeline-section .timeline-container .timeline-preorder-cta a:hover {
    color: #005f66 !important; /* Darker turquoise */
    border-bottom-color: #005f66 !important; /* Darker underline */
}





/* Responsive: Adjust for Mobile */
@media screen and (max-width: 768px) {
    .timeline-section {
        max-width: 90vw; /* ✅ Use 90% width for better readability */
    }

    .timeline-flexbox {
        flex-direction: column; /* ✅ Stack lists vertically on mobile */
    }

    .timeline-dates, 
    .timeline-milestones {
        width: 100%; /* ✅ Full width on mobile */
        padding-left: 0;
    }
}
