.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 320px;
  }
}




.rooms-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.rooms-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.rooms-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.rooms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.room-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.room-name {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.room-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.room-price {
  font-size: 1.2rem;
  color: #e67e22;
  margin-bottom: 20px;
  font-weight: bold;
}

.room-btn {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #e67e22;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.room-btn:hover {
  background-color: #d35400;
}

@media (max-width: 768px) {
  .rooms-grid {
    flex-direction: column;
    gap: 20px;
  }

  .room-card {
    width: 100%;
  }
}
