<style>
    .menu-section {
        padding: 40px 0;
        font-family: Arial, sans-serif;
    }

    .title-box.centered {
        text-align: center;
        margin-bottom: 30px;
    }

    .title-box h2 {
        font-size: 28px;
        margin-top: 5px;
    }

    .menu-rows {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .menu-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 15px;
        align-items: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .col.en {
        text-align: left;
    }

    .col.ar {
        direction: rtl;
        text-align: right;
    }

    .title {
        font-weight: bold;
        font-size: 16px;
    }

    .spicy {
        color: red;
        margin-right: 4px;
    }

    .col.image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .col.image img {
        max-width: 200px;
        border-radius: 6px;
        display: block;
    }

    .desc {
        font-size: 13px;
        color: #fff;
        margin-top: 5px;
    }
</style>