
body {
    background-color: #f8f9fa;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #4A5568;
}
.timeline {
    position: relative;
    max-width: 1200px; /* Restrict the width on large screens */
    margin: 0 auto; /* Center the content */
    padding: 30px;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.container-t {
    position: relative;
    width: 50%;
    min-height: 120px;
}
.container-left {
    left: 0%;
    padding-right: 70px;
    text-align: right;
}
.container-right {
    left: 50%;
    padding-left: 70px;
    text-align: left;
}
.content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.container-t .content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 35px;
    width: 0;
    z-index: 1;
    border: medium solid white;
}
.container-left .content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}
.container-right .content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
.image {
    position: absolute;
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border: solid 5px #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.container-left .image {
    right: 0;
    margin-right: -45px;
}
.container-right .image {
    left: 0;
    margin-left: -45px;
}
.content span {
    color: #2C7A7B;
    font-size: 1.1em;
    font-weight: bold;
}
.content h2 {
    font-size: 1.8em;
    padding-top: 5px;
}
.content p {
    line-height: 1.6;
    padding-top: 5px;
}
@media screen and (max-width: 767px) {
    .timeline::after {
        left: 65px;
    }
    .container-t {
        width: 100%;
        padding-left: 100px;
        padding-right: 0px;
        margin-top: 30px;
    }
    .container-t:first-of-type {
        margin-top: 0px;
    }
    .container-right {
        left: 0%;
    }
    .container-left {
        text-align: left;
        left: 0%;
    }
    .container-t .image {
        left:-10px;
        top: 0px;
        margin-left: 0;
        margin-right: 0;
    }
    .container-left .content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
}
@media screen and (max-width: 480px) {
    .container-t {
        padding-left: 0px;
        padding-top: 105px;
        z-index: 3;
    }
    .container-t .content::before {
        left: 25px;
        top: -10px;
        border: medium solid white;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent white transparent;
    }
}