 .bodycontentcost {
      display: flex;
      justify-content: center;
    }
    .paper {
      background-color: #fff;
      width: 100%;
      max-width: 800px;
      padding: 16px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      box-sizing: border-box;
      overflow: hidden;
      position: relative;
      height: 350px;
      transition: .5s ease-in-out;
    }
    h2 {
      /* text-align: center; */
      margin-bottom: 20px;
      font-size: 1.5em;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 0px;
    }
    th,
    td {
      padding: 8px 10px;
      border: 1px solid #ddd;
      font-size: 0.85em !important;
    }
    th {
      background-color: #f0f0f0;
      text-align: left;
    }
    .first-col {
      font-weight: 500;
      width: 60%;
      background-color: #fafafa;
      padding: 0.2rem .625rem;
    }
    .second-col {
      text-align: right;
      background-color: #fff;
      padding: 0.2rem .625rem;
      filter: blur(2.3px)
    }
    .section-header {
      background-color: #dcdcdc;
      font-weight: bold;
      text-align: center;
      padding: 4px;
      font-size: 1em;
    }
    .expandCost {
      position: absolute;
      color: #fff;
      background: #1f1513;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 17px;
      bottom: 0;
      left: 0;
      padding: 6px;
    }
    @media (max-width: 600px) {
      .section-header {
        background-color: #dcdcdc;
        font-weight: bold;
        text-align: center;
        padding: 4px;
        font-size: 1em;
      }
      th,
      td {
        padding: 8px 10px;
        border: 1px solid #ddd;
        font-size: 0.65em !important;
      }
      .paper {
        padding: 16px;
      }
      th,
      td {
        font-size: 0.85em;
        padding: 6px 8px;
      }
      h2 {
        font-size: 1.2em;
      }
      .expandCost {
        font-size: 13px;
      }
    }
   
    .grecaptcha-badge {
      display: none !important;
    }




    /* Gallery */
/* Slider container */
.fullwidth-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
/* Slider track */
.slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
/* Each slide fills the visible area */
.slide {
  min-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}
/* Image fit and responsive */
.slide img {
  width: 100%;
  height: 720px;           /* change height as needed */
  object-fit: cover;
  display: block;
}
/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 22px;
}
.arrow:active { transform: translateY(-50%) scale(0.98); }
.arrow.prev { left: 12px; }
.arrow.next { right: 12px; }
/* Small screens: reduce image height */
@media (max-width: 768px) {
  .slide img { height: 260px; }
  .section-title { font-size: 20px !important; }
  .arrow { width: 40px; height: 40px; font-size: 28px; }
}
/* Desktop keeps max-width */
.fullwidth-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
/* Fix merging issue */
.slide {
  min-width: 100%;
  flex-shrink: 0;
}
/* Mobile fix: slider becomes exactly 100% */
@media (max-width: 768px) {
  .fullwidth-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 10px; /* keep rounding */
  }
  .slider {
    width: 100% !important;
  }
  .slide {
    width: 100% !important;
    min-width: 100% !important;
  }
}