* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background: #fff;
    color: #333;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #333;
  }
  
  .navbar img.logo-img {
    height: 60px;
  }
  
  .navbar-center {
    display: flex;
    gap: 25px;
    list-style: none;
  }
  
  .navbar-center li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .navbar-right {
    color: white;
    font-weight: 600;
  }
  
  .page-banner {
    background-color: #f8f9fa;
    padding: 60px 20px;
    margin-top: 4%;
    text-align: center;
  }
  
  .page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #d4af37;
  }
  
  .products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
  }
  
  .product-card {
    border: 1px solid #ccc;
    padding: 15px;
    width: 250px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: white;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  footer {
    text-align: center;
    background-color: #002147;
    color: white;
    padding: 20px;
    margin-top: 40px;
  }
  