.about-list {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 120px;
    width: 100%;
}

.about-box {
    align-items: stretch;
    display: flex;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.about-box:nth-child(odd) {
    margin-right: auto;
}

.about-box:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto;
}

.about-img {
    flex: 0 0 400px;
    height: 400px;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    min-width: 0;
}

.about-heading {
    color: #000000;
    font-family: Verdana, sans-serif;
    font-size: 36px;
    font-weight: bold;
}

.about-text {
    color: #000000;
    font-family: Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .about-list {
        padding: 40px 24px;
        gap: 56px;
    }

    .about-box,
    .about-box:nth-child(even) {
        flex-direction: column;
        margin: 0;
        max-width: 100%;
    }

    .about-img {
        flex: 0 0 auto;
        height: auto;
        object-fit: contain;
        order: 2;
        width: 100%;
    }

    .about-content {
        order: 1;
    }

    .about-heading {
        text-align: center;
    }
}
