body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
  }
  
  .banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
  }
  
  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content {
    max-width: 900px;
    margin: auto;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  /* Seção "Descripción": Texto centralizado */
  .text-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .titulo-imagen {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .text-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  /* Linha separadora */
  .separator {
    width: 80%;
    height: 1px;
    background-color: #ddd;
    margin: 2rem auto;
  }
  
  /* Seção "Ventajas": Lista centralizada */
  .product-details {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
  }
  
  .ventajas-content {
    text-align: center;
  }
  
  .ventajas-content ul {
    list-style: none;
    padding: 0;
    margin: auto;
    font-size: 1rem;
    line-height: 1.6;
    display: inline-block;
    text-align: left;
  }
  
  .ventajas-content ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Seção "Composición": Tabela centralizada */
  .composition {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
  }
  
  .composition h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .composition table {
    margin: auto;
    border-collapse: collapse;
    width: auto;
  }
  
  .composition table td,
  .composition table th {
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 1rem;
    text-align: center;
  }
  
  .composition table th {
    background-color: #f2f2f2;
  }
  
  /* Seção "Indicaciones de uso": Texto centralizado */
  .usage-instructions {
    text-align: center;
    margin-top: 2rem;
  }
  
  .usage-instructions h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .usage-instructions p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: auto;
    text-align: center;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .ventajas-content ul {
      text-align: center;
    }
  }
  