.container {
    margin-top: 100px;
    padding: 50px 150px;
}

.container-header {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.container-header-image {
    width: 450px;
    height: 450px;
    border-radius: 20px;
    background-color: rgba(200, 200, 200, 0.1);
}

.container-header img {
    width: 450px;
    border-radius: 20px;
}

.container-header p {
    margin-top: 10px;
    line-height: 1.5;
}

.container-header h1 {
    line-height: 1.2;
}

.bolder-text {
    font-weight: 900;
}

.order-button {
    width: 120px !important;
    height: auto;
    margin-top: 20px;
}

.section {
    margin-top: 40px;
}

.section p {
    margin-top: 10px;
    line-height: 1.5;
}

.articles {
    display: flex;
    justify-content: space-between;
}

.article {
    width: 310px;
    background-color: white;
    box-shadow: 3px 3px 15px #d8d8d8;
    border-radius: 20px;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.article img {
    width: 100%;
    height: auto;
}

.pixel {
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.table {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    margin-bottom: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}

.table-bottom {
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 700px) {

    .container {
        margin-top: 60px;
        padding: 50px 20px;
    }

    .container-header {
        flex-direction: column-reverse;
        overflow: hidden;
    }

    .container-header-image {
        width: 100vw;
        height: 90vw;
        border-radius: 0;
        background-color: white;
    }

    .container-header img {
        width: auto;
        border-radius: 0;
    }

    .articles {
        display: flex;
        flex-direction: column;
    }
}