.consultCard {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    transition: box-shadow .3s ease, transform .3s ease;
}

.consultCard:hover {
    box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.consultText h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
}

.consultText h2 span {
    color: #2563eb;
}

.consultText p {
    margin-top: 12px;
    color: #6b7280;
    max-width: 520px;
    line-height: 1.7;
}

/* button */
.consultBtn {
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    transition: all .25s ease;
}

.consultBtn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
}

/* mobile */
@media (max-width: 768px) {
    .consultCard {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}