.timeline h1 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline h2 {
    text-align: center;
    font-size: 1rem;
    font-weight: 200;
    color: #888;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #e4a11b;
    top: 8rem;
    bottom: 0;
    left: 50%;
}

.timeline-container {
    padding: 40px 30px;
    position: relative;
    width: 50%;
}

.icon {
    position: absolute;
    top: 50px;
    width: 64px;
    height: 64px;
    background-color: white;
    border: 1px solid #e4a11b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.icon img {
    width: 30px;
    height: auto;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.left .icon {
    right: -32px;
}

.timeline-container.right {
    left: 50%;
}

.timeline-container.right .icon {
    left: -32px;
}

.content {
    padding: 20px;
    background-color: #f7f3f3;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    margin-top: 2rem;
    cursor: pointer;
}

.content h3 {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: #000;
}

p {
    font-size: 12pt;
}

.timeline-container.left .content {
    margin-left: 60px;
    margin-right: 1rem;
    text-align: justify;
    border-right: 3px solid #006eff;
}

.timeline-container.right .content {
    margin-right: 60px;
    margin-left: 1rem;
    text-align: justify;
    border-left: 3px solid #e4a11b;
}

.date {
    display: inline-block;
    background-color: #e4a11b;
    color: #000;
    padding: 4px 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.icon-image-left {
    width: 12rem;
    position: absolute;
    left: -70%;
    top: 5rem;
}

.icon-image-rigiht {
    width: 12rem;
    position: absolute;
    right: -70%;
    top: 5rem;
}

@media (max-width: 768px) {
    .timeline {
        width: 100%;
        margin: 1rem;
        padding: 0 0;
    }

    .timeline::after {
        display: none;
    }

    .timeline-container {
        padding: 0;
        width: 100%;
    }

    .icon {
        position: relative;
        width: 64px;
        height: 64px;
        background-color: white;
        border: 1px solid #e4a11b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .icon img {
        width: 30px;
        height: auto;
    }

    .timeline-container.left {
        left: 0;
    }

    .timeline-container.left .icon {
        right: 0;
    }

    .timeline-container.right {
        left: 0;
    }

    .timeline-container.right .icon {
        left: 0;
    }

    .content {
        padding: 20px;
        background-color: #f7f3f3;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        font-size: 0.8rem;
        margin-top: 0.5rem;
        cursor: pointer;
        width: 90%;
    }

    .content h3 {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        font-weight: bold;
    }

    .timeline-container.left .content {
        margin: 1.5rem 0 0 1rem;
        text-align: justify;
        border-right: 3px solid #006eff;
    }

    .timeline-container.right .content {
        margin: 1.5rem 0 0 1rem;
        text-align: justify;
        border-left: 3px solid #e4a11b;
    }

    .date {
        display: inline-block;
        background-color: #e4a11b;
        color: #000;
        padding: 4px 20px;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 10px;
        border-radius: 3px;
    }

    .icon-image-left {
        display: none;
    }

    .icon-image-rigiht {
        display: none;
    }
}
