/* Карточки услуг — общий компонент для index.html и bitrix24.html */

.services-section {
    padding: 0 38px;
}
.services-section .section-title {
    margin-bottom: 3rem;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.service-title {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.service-description {
    color: #6c757d;
    line-height: 3.2rem;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    .service-card {
        padding: 1.5rem;
    }
}
