.about-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.about-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.about-item-intro {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    margin: 20px 0;
    align-items: center;
}

.about-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    margin: 20px 0;
    align-items: center;
}

.about-item-reverse {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    margin: 20px 0;
    align-items: center;
}

.about-item-img-container {
    width: 50%;
    object-fit: cover;
}

.about-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px;
    width: 50%;
}

.year {
    font-size: 72px;
    font-weight: bold;
    color: #000;
}

.content {
    max-width: 500px;
}

.bold-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.5;
}


@media (max-width: 1500px) {

    .about-item,
    .about-item-reverse {
        align-items: center;
        flex-direction: column;
    }

    .about-item-intro {
        flex-direction: column-reverse;
        margin: 0;
    }

    .about-item-img-container {
        width: 70%;
    }

    .about-item-content {
        width: 70%;
        margin: 0;
    }

}

@media (max-width: 1350px) {
    .about-item-img-container {
        width: 90%;
    }

    .about-item-content {
        width: 90%;
    }
}

@media (max-width: 1200px) {
    .about-item-img-container {
        width: 100%;
    }

    .about-item-content {
        width: 100%;
    }

    .bold-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}