/* Styling for the accordion */
    .accordion {
      margin-bottom: 10px;
      display: none; /* Hide the accordion by default */
    }
    
    .accordion.open {
      display: block; /* Display the accordion when it's open */
      text-align:center;
    }
    
    .accordion-header {
      padding: 10px;
      cursor: pointer;
      border-radius: 6px;
    border-width: 0px;
    color: rgb(255,255,255);
    font-family: sans-serif;
    height: auto;
    transition: all .4s ease;
    padding: 6px 18px;
    text-shadow: none;
    width: auto;
    font-size: 24px;
    line-height: 1.5em;
    margin: 20px;
}
    }
    
    .accordion-header:hover {
      box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1);
      Background: #000;
    }
    
    .accordion-content {
      padding: 10px;
      display: none;
      text-align:left;
    }
    
    .accordion-content.open {
      display: block;
    }

  .Booking-btn{
    border-radius: 6px ;
    border-width: 0px ;
    color: rgb(255,255,255);
    font-family: sans-serif;
    height: auto;
    transition: all .4s ease;
    padding: 6px 18px;
    text-shadow: none;
    width: auto;
    font-size: 24px;
    line-height: 1.5em; 
}

.intro-text {
    padding: 20px 0 0 0;
}