    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    body {
        background: #f9fafc;
                display: flex;
        flex-direction: column;
        min-height: 100vh;
           font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
    }
    
        .main-container {
        flex: 1;
    }

    .hero {
        background: linear-gradient(90deg, #198754, #0d6efd);
        color: white;
        padding: 60px 0;
        text-align: center;
    }

    .hero h1 {
        font-weight: 700;
        font-size: 2.2rem;
    }

    .search-bar {
        max-width: 600px;
        margin: 20px auto;
    }

    .category-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        cursor: pointer;
    }

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .category-card img {
        height: 180px;
        object-fit: cover;
    }

    .category-card h5 {
        font-weight: 600;
        color: #0d6efd;
    }
