/* 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(3, 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;
  }
  
  /* Why Choose Section */
  .why-choose {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .why-choose .subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
  }
  
  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .why-choose-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;
  }
  
  .why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .why-choose-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .why-choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .why-choose-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* Customizable Itinerary Section */
  .customizable-itinerary {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa; /* Light background to make it stand out */
    border-radius: 10px;
    margin: 2rem 0;
  }
  
  .customizable-itinerary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .customizable-itinerary .subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  .customizable-itinerary p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .customizable-itinerary .festival-package-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
  }
  
  .customizable-itinerary .festival-package-link:hover {
    text-decoration: underline;
  }
  
  /* Best Time to Visit within Customizable Itinerary Section */
  .customizable-itinerary .best-time {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd; /* Add a subtle border to separate the sections */
  }
  
  .customizable-itinerary .best-time h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .customizable-itinerary .best-time p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  .customizable-itinerary .best-time strong {
    color: var(--primary-color); /* Highlight the best time periods */
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .blog-post-content {
      flex-direction: column;
    }
  
    .sidebar {
      margin-left: 0;
      margin-top: 2rem;
      max-width: 100%;
      position: static; /* Disable sticky behavior on mobile */
    }
  
    .activities-grid,
    .details-grid,
    .why-choose-grid {
      grid-template-columns: 1fr;
    }
  }