/* Timeline Section - f349941d */

.tl-f349941d-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

/* Timeline track with line and dots */
.tl-f349941d-timeline-track {
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.tl-f349941d-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    border-radius: 2px;
}

.tl-f349941d-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #0d6efd;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-f349941d-dot:hover {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.45);
}

/* Columns layout */
.tl-f349941d-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tl-f349941d-column {
    text-align: center;
    padding: 0 10px;
}

/* Headings */
.tl-f349941d-heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #1a1a2e;
    line-height: 1.2;
}

.tl-f349941d-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 14px 0;
    color: #16213e;
    line-height: 1.3;
}

/* Divider */
.tl-f349941d-divider {
    width: 40px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px;
    margin: 0 auto 14px auto;
}

/* Description */
.tl-f349941d-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 1024px) {
    .tl-f349941d-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .tl-f349941d-timeline-track {
        display: none;
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 767px) {
    .tl-f349941d-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tl-f349941d-timeline-track {
        display: none;
    }
}
