body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 0;
      color: #222;
    }

    .gallery-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .gallery-section h2 {
      text-align: center;
      font-size: 2.0rem;
      color: #2e1503; /* brand color */
      margin-bottom: 20px;
    }

    .gallery-section h3 {
      text-align: center;
      margin: 40px 0 20px;
      font-size: 1.5rem;
      font-weight: 500;
      color: #65350f;
    }

    .swiper {
      width: 100%;
      max-width: 900px;
      margin: 0 auto 40px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      background: #fff;
    }

    .swiper-slide img {
      width: 100%;
      height: 400px;
      display: block;
      object-fit: contain;
      
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #333;
    }

    .swiper-pagination-bullet {
      background: #333;
    }

    .intro-video {
  max-width: 900px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #fff;
}

.intro-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Gallery & Video Media Queries ===== */
@media screen and (max-width: 992px) {
  .gallery-section {
    padding: 30px 15px;
  }

  .gallery-section h2 {
    font-size: 24px;
  }

  .gallery-section h3 {
    font-size: 18px;
    margin: 30px 0 15px;
  }

  .swiper {
    max-width: 100%;
  }

  .swiper-slide img {
    height: 300px;
  }

  .intro-video {
    max-width: 100%;
    margin: 30px auto;
  }
}

@media screen and (max-width: 576px) {
  .gallery-section {
    padding: 20px 10px;
  }

  .gallery-section h2 {
    font-size: 20px;
  }

  .gallery-section h3 {
    font-size: 16px;
    margin: 25px 0 10px;
  }

  .swiper-slide img {
    height: 200px;
  }

  .intro-video {
    margin: 20px auto;
  }
}



