.category-area {
    background-color: #f3f0e7;
    padding: 40px 0;
}

.category-card {
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.category-icon {
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    max-width: 50px;
    max-height: 50px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .category-area {
        padding: 30px 0;
    }
    .category-text h3 {
        font-size: 13px;
    }
}
