.booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;

    .form-c {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 20px;
        width: fit-content;
    }
}
 .next-head-text {
    padding-top: 10px;
     padding-inline: 50px;
     display: flex;
     flex-direction: column;
     align-items: center;
     background-color: rgba(255, 255, 255, 0.813);
     width: 100%;
     background-image: url(assets/bb4.png);
     background-size: cover;

     h1 {
         font-size: 4rem;
         font-weight: 300;
         color: #ff0000;
         margin-bottom: 10px;
         font-family: "florania";
     }

     h2 {
         font-size: 29px;
         color: #666;
         margin-bottom: 20px;
     }

     h3 {
         font-size: 14px;
         color: #000000;
         margin-bottom: 30px;
     }
 }
  a {
      text-decoration: none;
      color: #ffffff;
      
  }
 

  .exhibition-info-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
        width: 100%;
      margin: 40px auto;
      border-radius: 10px;
      overflow: hidden;
      padding: 20px;
  }

  .pricing-section {
      display: flex;
      width: 100%;
      gap: 20px;
      align-items: center;
      flex-direction: row;
      justify-content: center;
      
  }

  .pricing-card {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 45%;
  }

  .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .pricing-title {
      font-size: 1.6em;
      margin-bottom: 10px;
  }

  .pricing-amount {
      font-size: 2.5em;
      font-weight: bold;
      color: #ff0000;
  }

  .pricing-description {
      font-size: 1em;
  }

  .event-details-section {
      width: 50%;
      padding: 50px;
  }

  .details-header {
      font-size: 1.5em;
      margin-bottom: 15px;
  }

  .details-list {
      list-style-type: none;
  }

  .detail-item {
      background-color: #f9f9f9;
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 10px;
      transition: background-color .3s ease;
  }

  .detail-item:hover {
      background-color: #e1e8ed;
  }

  .detail-label {
      font-weight: bold;
      color: #ff0000;
  }

  /* Responsive adjustments */
  @media (max-width:768px) {
      .exhibition-info-container {
          flex-direction: column;
          align-items: center;
          width: auto;
          padding: 15px;
      }

      .pricing-section{
        width: 100%;
        margin-bottom: 20px;
      }
      .event-details-section {
          width: 100%;
          margin-bottom: 20px;
          ul{
            width: 100%;
            li{
                width: 100%;
            }
          }
      }
  }

  /* Specific styling for local and international cards */
  .pricing-card.local {
      border-top: solid #28a745;
      /* Green */
  }

  .pricing-card.international {
      border-top: solid #dc3545;
      /* Red */
  }
  /* Active styling for payment methods */
  .method-item {
      display: inline-block;
      padding: 5px 10px;
      margin: 5px;
      cursor: pointer;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 46%;
      margin-block: 20px;
    transition: all .3s ease;
  }

  .method-item.active {
      background-color: red;
      color: #fff;
      border-color: red;
  }
  .method{
    width: 100%;
    transition: all .3s ease;
  }