body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--background-gradient);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  img:hover {
    transform: scale(1.5);
  }
  
  h1 {
    /* Estilos generales para los h1 si los hay */
    text-align: center;
    margin-bottom: 20px;
  }
  
  p {
    /* Estilos generales para los párrafos si los hay */
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  /* Estilos específicos para about-us.html si los hay */