 body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }
    nav {
      background: #8c8b89;
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    nav ul {
      display: flex;
      list-style: none;
      justify-content: center;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #cfe2ff;
    }
    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }
      nav a {
        font-size: 1rem;
      }
    }
    section {
      padding: 4rem 2rem;
      max-width: 1000px;
      margin: auto;
    }
    .hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('kepek/fokep.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    border-radius: 0 0 16px 16px;
}
	
	
	
    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      background: rgba(0,0,0,0.4);
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
    }
    h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }
    .card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
    }
    ul {
      padding-left: 1.2rem;
    }
    .gallery-container, .product-images {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }
    .referencia-kep {
      width: 300px;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .product-images img {
      width: 300px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    footer {
      background: #8c8b89;
      color: white;
      text-align: center;
      padding: 1.5rem;
      margin-top: 3rem;
      font-weight: 500;
    }