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

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(to bottom right, #ffffff,beige);
  color: #362f6d;
}

/* Heading */
header h1 {
  margin-top: 30px;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #362f6d;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  text-align: center;
}

/* New Experience Section */
.experience-section {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 1100px;
}

.experience-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #EF7722;
}

.experience-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

/* Feature Icons */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  background: #fff8ec;
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2rem;
  color: #362f6d;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #EF7722;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Activities Grid */
.activities-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.activity-box {
  width: 300px;
  background: #fff;

  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

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

.activity-content {
  padding: 15px;
  text-align: center;
}

.activity-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #362f6d;
}

.activity-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

.activity-content a {
  display: inline-block;
  background: #EF7722;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.3s;
}

.activity-content a:hover {
  background: #d85f15;
}

/* Responsive */
@media (max-width: 992px) {
  .activity-box { width: 45%; }
  .feature-box { width: 40%; }
}
@media (max-width: 768px) {
  .activity-box { width: 70%; }
  .feature-box { width: 80%; }
}
@media (max-width: 576px) {
  .activity-box { width: 90%; }
  .feature-box { width: 90%; }
}
