.accommodation-page {
  padding: 30px;
  background: #fff;
  color: #333;
}

.accommodation-page h2 {
  color: #8B4513;
  text-align: center;
  margin-bottom: 15px;
}

.accommodation-page p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.booking-form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.booking-form h3 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 15px;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  gap: 15px;
}

.form-group input,
.form-group select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.booking-form .btn {
  background: #8B4513;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form .btn:hover {
  background: #5a2d0c;
}

/* Room gallery */
.room-gallery h3 {
  text-align: center;
  color: #8B4513;
  margin-bottom: 20px;
}

.room-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.room-images img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
}
