/* Rajmachi Camping Experience Section */
.camping-experience {
  padding: 60px 20px;
  background: #f6f6f6;
  font-family: 'Segoe UI', sans-serif;
}
.camping-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}
.camping-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.camping-text {
  flex: 1;
}
.camping-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}
.camping-text h3 {
  font-size: 1.4rem;
  margin: 20px 0 5px;
  color: #444;
}
.camping-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}
.book-now-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #2d7d46;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.book-now-btn:hover {
  background-color: #226e3c;
}
@media (max-width: 768px) {
  .camping-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .camping-image img {
    max-width: 90%;
    margin: auto;
  }
}
