/* Full height page structure */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Content takes up full space above footer */
  .product-container {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    gap: 4rem;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    padding-bottom: 15rem;
  }
  
  .product-image {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .product-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }
  
  .product-details {
    flex: 1 1 45%;
    max-width: 700px;
  }
  
  .product-details h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
  }
  
  .product-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
  }
  
  .quote-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  
  .quote-button:hover {
    background-color: #0056b3;
  }
  
  /* Make layout stack on smaller screens */
  @media (max-width: 768px) {
    .product-container {
      flex-direction: column;
      text-align: center;
      padding: 2rem 1rem;
    }
  
    .product-image, .product-details {
      flex: 1 1 100%;
    }
  
    .product-details h1 {
      font-size: 2rem;
    }
  
    .product-details p {
      font-size: 1rem;
    }
  }
  