body {
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero-section {
    background: url('image.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Category Boxes */
.category-box {
    background-color: #007bff;
    color: white;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.category-box:hover {
    background-color: #0056b3;
}

/* Card Styling */
.card img {
    height: 200px;
    object-fit: cover;
}

/* Navigation Buttons */
.nav-buttons button {
    margin: 5px;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
}
