  @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  
  body{
    font-family: "Roboto", Sans-serif;
    line-height: 1.5;
    margin: 0;
    background:#f7f7f9;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
  }
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: white;
  }
  header img {
    height: 50px;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
  }
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 5%;
    background: url('https://inescosmetics.com/wp-content/uploads/2025/07/Slide-Site.webp') center right / cover no-repeat;
    color: black;
    overflow: hidden;
  }
 
  .hero-text {
    position: relative;
    max-width: 500px;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  .hero-text h2 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.2;
  }
  .hero-text span {
    color: #EA1D2C;
  }
  .hero-text p {
    margin-top: 20px;
    font-size: 1.1rem;
  }
  .hero-text a {
    display: inline-block;
    background: #EA1D2C;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
  }

  @keyframes fadeInUp {
    to { opacity: 1; transform: translateX(0); }
    from { opacity: 0; transform: translateX(-60px); }
  }

  @media (max-width: 768px) {
    .hero {
      padding: 80px 5%;
      background-position: center center;
    }
    .hero-text h2 {
      font-size: 2.2rem;
    }
    nav ul {
      display: none;
      }
  }