    body {
      margin: 0;
      padding: 0;
      font-family: sans-serif;
      line-height: 1.6;
    }

    .image-container {
      width: 100%;
      overflow: hidden;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    .content-container {
      margin: 5%;
      background: #fff;
    }

    .nav-box {
      display: flex;
      align-items: center;
    }

    .nav-box a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
    }

    .nav-box p {
      margin: 0;
      color: #696969;
      line-height: 1;
    }

    .orange-box {
        margin: 3rem 0;
    }

    .orange-box img{
      width: 100%;
    }

    .content {
      margin-top: 20px;
    }

    .row {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      gap: 3%;
    }

    .row .image-wrapper {
      width: 50%;
    }

    .row .image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    .row .text-wrapper {
      width: calc(50% - 3%);
      text-align: right;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .row h2 {
      margin: 0 0 10px 0;
      font-size: 1.7em;
      font-weight: bold;
    }

    .row p {
      margin: 0 0 10px 0;
      font-size: 1.1em;
      text-align: justify;
    }

    /* ================================== */
    @media (max-width: 992px) {
        .desktop {
            display: none;
        }

        .mobile {
            display: block;
        }
      .row {
        flex-direction: column; /* سطر ستونی میشه */
        gap: 10px; /* فاصله عکس و متن */
      }

      .row .image-wrapper,
      .row .text-wrapper {
        width: 100%; /* عکس و متن تمام عرض */
      }

      .row .text-wrapper {
        justify-content: flex-start; /* متن از بالا شروع بشه */
      }

      .row:nth-child(2) {
        flex-direction: column-reverse;
      }
    }

    @media screen and (max-width: 1300px) {
        .row p {
            font-size: 0.85rem !important;
        }
    }

    @media screen and (max-width: 1500px) {
        .row p {
            font-size: 1rem;
        }

        .row h2 {
            font-size: 1.3rem;
        }
    }

    @media screen and (min-width: 1800px) {
        .container {
            width: 1550px;
            margin: 0 auto;
        }
    }