.button-container {
    /*display: flex;*/
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0px;
}

.btn-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px; 
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Prompt', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    min-width: 250px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-chat i {
    font-size: 24px;
    margin-right: 12px;
}

.whatsapp {
    background: #25D366;
}

.messenger {
    background: #006AFF;
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
    background-size: 200% 200%;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.btn-chat:active {
    transform: translateY(0);
}