.services-section {
    background: #f8f9fa;
}

.section-title {
    color: #1565ff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 24px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    padding: 20px;
}

.service-image img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.service-content {
    padding: 0 30px;
}

.service-content h3 {
    /* font-size: 38px; */
    font-weight: 700;
    color: #343a40;
    margin-bottom: 20px;
}

.service-content p {
    color: #6c757d;
    /* font-size: 26px; */
    line-height: 1.8;
    margin-bottom: 25px;
}

.bonus-text {
    color: #198754;
    font-weight: 700;
}

/* .btn {
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 18px;
} */

.btn-outline-primary:hover {
    color: #fff;
}

.btn-outline-success:hover {
    color: #fff;
}

@media (max-width: 768px) {

    .section-title {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 28px;
    }

    .service-content p {
        font-size: 18px;
    }
}