.contact-wrapper {
    text-align: center;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.telegram-btn {
    min-width: 180px;
    padding: 1rem 2.4rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #0a66ff, #3b82f6);
    box-shadow: 0 10px 25px rgba(10, 102, 255, .22);
    font-weight: 800;
    text-decoration: none;
    transition: transform .35s ease;
}

.telegram-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-actions {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .telegram-btn {
        width: 100%;
        max-width: 320px;
    }
}
