/* Custom Styles */
body {
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    background: url('images/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
}

.products .card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.products .card:hover {
    transform: translateY(-5px);
}

.products .card img {
    height: 250px;
    object-fit: cover;
}

footer {
    background-color: #343a40;
}
