  .hotel_hero_section {
      background-color: var(--bg-dark);
      /* Dark blue background */
      color: var(--color-white);
      padding: 80px 20px;
      text-align: center;
  }

  .hotel_hero_section h2 {
      font-weight: 500;
      font-style: Medium;
      font-size: 48px;
      line-height: 58px;
      letter-spacing: -0.56px;
      text-align: center;
      width: 1130px;
      margin: 0 auto;


  }

  .hotel_hero_section h2 .highlight {
      color: var(--color-accent);
      /* Light blue highlight */
      font-weight: 600;
  }

.hotel_hero_section .demo_btn {
    margin-top: 3.5rem;
    padding: 10px 20px;
    background-color: var(--color-light-blue);
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hotel_hero_section .demo_btn:hover {
    background-color: var(--bg-light);
    color: var(--bg-dark);
    transform: scale(1.05);
}

  @media (max-width: 768px) {
      .hotel_hero_section h2 {
          font-style: Medium;
          font-size: 32px;
          line-height: 42px;
          letter-spacing: -0.56px;
          text-align: center;
          width: 96%;
      }

      .hotel_hero_section .demo_btn {
          font-size: 16px;
          letter-spacing: -0.22px;

      }
  }
  @media (min-width: 768px) {
    .hotel_hero_section h2 {
        width: 90%;
    }
}
  @media (min-width: 992px) {
      .hotel_hero_section h2 {
          width: 90%;
      }
  }