.whatsapp-container {
    position: fixed;
    bottom: 20px; /* Alt boşluk */
    left: 20px;   /* Sol boşluk */
    z-index: 9999; /* Sayfanın üstünde görünmesini sağlar */
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* WhatsApp yeşili */
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.whatsapp-button i {
    font-size: 24px; /* WhatsApp ikonunun boyutu */
    margin-right: 8px;
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Hover efekti */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}