  * {
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .container {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .carousel-container {
      flex: 1;
      position: relative;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }
    .carousel-slide {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .carousel-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      padding: 5px;
      cursor: pointer;
      z-index: 10;
    }

    .arrow-left {
      left: 10px;   
    }
    .arrow-right {
      right: 10px; 
    }
    .text-content {
      flex: 1;
      padding: 20px;
      max-width: 1500px; 
    }
    .text-content h2 {
      color: #843c0c;
      font-size: 2em;
      margin-bottom: 10px;  
    }
    .text-content p {
      font-size: 1.1em;
      line-height: 1.6;
    }
    .text-content .buttons {
        margin-top: 30px;
        display: flex;
        gap: 20px;
        justify-content: end;
        flex-wrap: wrap;
      }
      .text-content .buttons a {
        flex: 1;
        max-width: 150px;
        text-align: center;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 8px;
        border: 2px solid #843c0c;
        color:#843c0c;
        font-weight: bold;
        transition: 0.3s ease;
        display: inline-block;
      }

      .text-content .buttons a:hover {
        background-color: #843c0c;
        color: white;
      }

      /* =========txt ====== */
        .title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #a34900;
      }

      .description {
        margin-top: 10px;
        font-size: 1rem;
        line-height: 1.5;
        padding: 10px;
      }

      .text-content h2{
        font-size: 1.5rem;
        font-weight: bold;
        color: #a34900;
      }

      .amenities {
        display: flex;
        flex-wrap: wrap;
        margin-top: 15px;
        gap: 10px;
      }

      .item {
        width: 48%;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 15px;
      } 
      @media (max-width: 1024px) {
      .container {
        flex-direction: column; /* ប្តូរទៅជួរឈរ (រូបនៅលើ) */
      }

      .carousel-container {
        width: 100%;
        margin-bottom: 20px; /* ចន្លោះរវាងរូប និងអត្ថបទ */
      }

      .carousel-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      .text-content {
        width: 100%;
        padding: 10px 20px;
      }

      .text-content .buttons {
        margin-top: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .text-content .buttons a {
        width: 100%;
        max-width: 100%;
      }
    }

    

      /* Responsive for phones */
      @media (max-width: 768px) {
        .text-content .buttons {
          margin-top: 20px;
          flex-direction: column;
          align-items: stretch;
          gap: 10px;
        }

        .text-content .buttons a {
          width: 100%;
          max-width: 100%;
        }
      }
      /* iPad / Tablet Full Image */



 