.card-service {
    padding: 15px;
    background: #F7F8F9;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-service .icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 14px 20px 48px 0px rgba(25, 15, 44, 0.06);
    border-radius: 24px;
}

.card-service img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.card-service .card-title {
    font-size: 22px;
    line-height: 125%;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-service .card-text {
    font-size: 18px;
    line-height: 145%;
    margin-bottom: 0;
}

#services-grid > div.hidden {
    display: none !important;
}

.btn-category {
    font-family: 'Montserrat';
    font-weight: 600;
    background: transparent;
    border: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0.3rem;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
    color: #333333;
    text-align: left;
}

.btn-category:hover {
    color: #FF9F00;
}

.btn-category.active {
    color: #FF9F00;
    border-bottom: 2px solid #FF9F00;
}

@media (max-width: 576px) {
    .btn-category {
        font-size: 16px;
    }

    .catygories {
        flex-direction: column;
    }

    .catygories > button {
        width: max-content;
    }
}

@media (max-width: 767px) {
    .card-service .icon {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }

    .card-service img {
        width: 35px !important;
        height: 35px !important;
        object-fit: contain;
    }

    .card-service .card-title {
        font-size: 16px;
    }

    .card-service .card-text {
        font-size: 14px;
    }
}