/* General container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  /* Header styles */
  header {
    margin-bottom: 2rem;
  }
  
  header img {
    max-width: 200px;
    height: auto;
  }
  
  header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
  }
  
  /* Grid layout for main content and sidebar */
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: 2fr 1fr;
    }
  }
  
  /* Prose styles for description */
  .prose {
    max-width: none;
    color: #374151;
    line-height: 1.75;
  }
  
  .prose p {
    margin-bottom: 1rem;
  }
  
  /* Sidebar styles */
  aside {
    background-color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
  }
  
  aside h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  aside p {
    margin-bottom: 0.5rem;
  }
  
  aside a {
    color: #2563eb;
    text-decoration: none;
  }
  
  aside a:hover {
    text-decoration: underline;
  }
  
  /* Product categories section */
  section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .product-grid > div {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Call to action button */
  .cta {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta:hover {
    background-color: #1d4ed8;
  }
  
  /* Responsive adjustments */
  @media (max-width: 640px) {
    header h1 {
      font-size: 1.875rem;
    }
  
    section h2 {
      font-size: 1.25rem;
    }
  }