.banner-container {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    margin: 20px auto;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #6b7280;
}

.category-title {
    font-size: var(--hb-font-size-lg);
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

.view-more-btn {
    background: white;
    color: #8b5cf6;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.banner-title {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    
}

.banner-subtitle {
    
    opacity: 0.9;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1.4rem;
    }
    .category-card {
        height: 150px;
        padding: 15px;
    }
    .category-icon {
        font-size: 2.5rem;
    }
}