button#loadMoreFaqs:hover {
    background-color: white !important;
    color: #7f19e5!important;
    transition: all 2500ms ease!important;
    border: purple solid 1px !important;
}
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.timeline {
    position: relative;
    padding: 20px 0;
    min-height: 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    clear: both;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7f19e5;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Left side items */
.timeline-item.left {
    padding-right: 50%;
}

/* Right side items */
.timeline-item.right {
    padding-left: 50%;
}

/* Height variations */
.timeline-item.higher {
    margin-top: -100px;
}

.timeline-item.lower {
    margin-top: 60px;
}

.timeline-content {
    position: relative;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-image-wrap {
    margin-bottom: 15px;
}

.timeline-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.timeline-title {
    margin-top: 0;
    color: #7f19e5;
}

.timeline-date {
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.timeline-text {
    line-height: 1.6;
}

/* Responsive styles */
@media (min-width: 768px) {
.timeline-item {
    margin-bottom: -100px;
}
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding: 0;
        padding-left: 60px;
    }

    .timeline-item::after {
        left: 20px;
    }

    .timeline-item.higher,
    .timeline-item.lower {
        margin-top: 0;
    }
}
