
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }

    .rooms-section {
      padding: 40px 20px;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .room-detail-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .room-images img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .room-content {
      padding: 20px;
      text-align: left;
    }

    .room-content h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .room-content p {
      margin-bottom: 10px;
    }

    .room-price {
      font-size: 1.0rem;
      font-weight: bold;
      color: #007BFF;
      margin-bottom: 15px;
    }

    .room-price span {
      font-size: 0.85rem;
      font-weight: normal;
      color: #777;
    }

    .book-room-btn {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .book-room-btn:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      h2 {
        font-size: 2rem;
      }
    }
 
