body {
      background-color: #ffffff;
    }

.accordion {
      margin-top: 1rem;
      border: 1px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
    }
    .accordion-item {
      border-top: 1px solid #ccc;
    }
    .accordion-item:first-child {
      border-top: none;
    }
    .accordion-header {
      background: #fff;
      padding: 1rem;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 1.1rem;
    }
    .accordion-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: #03053f;
    }
    .accordion-body {
      padding: 1rem;
      display: none;
      background: #f9f9f9;
      font-size: 0.95rem;
      color: #333;
    }
    .accordion-item.active .accordion-body {
      display: block;
    }

    .enquire-btn {
      background-color: #03053f;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      margin-top: 2rem;
      display: inline-block;
      text-decoration: none;
      
    }
    .dining-block {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 4rem;
      align-items: center;
    }
    .dining-block.reverse {
      flex-direction: row-reverse;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      flex: 1;
    }
    .gallery img,
    .single-img img {
      width: 100%;
      border-radius: 10px;
    }
    .single-img {
      flex: 1;
      text-align: center;
    }
    .text {
      flex: 1;
    }
    .text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .text img {
      height: 26px;
      margin-right: 0.5rem;
    }
    .text p {
      font-size: 1rem;
      margin-bottom: 0.8rem;
      color: #444;
    }
    .dining-hero {
      background: url('IMG_20240602_021513.jpg') center center/cover no-repeat;
      height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      background-blend-mode: darken;
      background-color: rgba(0, 0, 0, 0.5);
    }
    .dining-hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .dining-hero p {
      font-size: 1.2rem;
      max-width: 600px;
    }
    .dining-section {
      padding: 4rem 1rem;
      max-width: 1200px;
      max-height: 1000px;
      margin: auto;
    }
    @media screen and (max-width: 768px) {
      .dining-block {
        flex-direction: column;
      }
      .gallery {
        display: block;
        position: relative;
        overflow: hidden;
        height: auto;
      }
      .gallery img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
      }
      .gallery img.active {
        opacity: 1;
        position: relative;
      }
      .dining-hero h1 {
        font-size: 2.2rem;
      }
      .dining-hero p {
        font-size: 1rem;
      }
    }