/* Reset base */
/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Header */
  .header {
    background-color: #7a2423;;
    color: white;
    padding: 2rem;
    text-align: center;
  }
  
  .header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .header p {
    font-size: 1rem;
  }
  
  /* Products Section */
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .product {
    background-color: #cccccc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .product h2 {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  
  .product p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Footer */
  .footer {
    margin-top: auto;
    background-color: #7a2423;;
    text-align: center;
    padding: 1rem;
  }
  
  .btn {
    display: inline-block;
    background-color: #e79601;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e6b800;
  }
  
  /* Responsive tweaks */
  @media (max-width: 600px) {
    .header h1 {
      font-size: 1.5rem;
    }
  
    .product h2 {
      font-size: 1rem;
    }
  }
  