
            .specular-timeline {
                max-width: 800px;
                margin: 0 auto;
            }

            .timeline-years {
                display: flex;
                gap: 20px;
                margin-bottom: 30px;
                border-bottom: 2px solid #eee;
                max-width: fit-content;
            }

            .timeline-year-tab {
                padding: 10px 20px;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
            }

            .timeline-year-tab:hover {
                background-color: #f5f5f5;
            }

            .timeline-year-tab::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 35px;
                width: 10px;
                height: 10px;
                background-color: #0C56F9;
            }

            .timeline-year-tab.active::after {
                background-color: #F96A2A;

            }

            .timeline-year-tab.active {
                /* border-bottom: 2px solid #000; */
                margin-bottom: -2px;
            }

            .timeline-content-tab {
                display: none;
            }

            .timeline-content-tab.active {
                display: block;
                animation: fadeIn 0.5s ease;
            }

            .timeline-title {
                padding: 15px 0 20px 0;
                font-size: 22px;
                font-weight: 600;
                font-family: 'Inter', sans-serif;
            }

            .timeline-description {
                font-size: 17px;
                font-weight: 400;
                font-family: 'Inter', sans-serif;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                }

                to {
                    opacity: 1;
                }
            }
       