/* 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;
  }
  
  /* Arts & Crafts Section */
  .arts-crafts {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .arts-crafts h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .arts-crafts .subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
  }
  
  .arts-crafts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .arts-crafts-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;
  }
  
  .arts-crafts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .arts-crafts-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .arts-crafts-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .arts-crafts-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;
  }
  
  
  
  /* 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 */
    }
  
    .arts-crafts-grid,
    .why-choose-grid {
      grid-template-columns: 1fr;
    }
  }