/* Blog Post Content Section */

.content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}


.content ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content ul li {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Activities Section */
.activities {
  padding: 4rem 2rem;
  text-align: center;
}

.activities h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.activities .subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.activity-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.activity-card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.activity-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Package Details Section */
.package-details {
  padding: 4rem 2rem;
  text-align: center;
}

.package-details h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.package-details .subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.details-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.details-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.details-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.details-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.details-card ul {
  list-style-type: none;
  padding: 0;
}

.details-card ul li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.details-card ul li i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}



/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-content {
    flex-direction: column;
  }

  .sidebar {
    margin-left: 0;
    margin-top: 2rem;
    max-width: 100%;
    position: static; 
  }

  .activities-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }
}