﻿.paketbilgi {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}

.width524 {
    width: 524px;
}


.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999999;
}

.contact-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

    .contact-btn:hover {
        background: linear-gradient(90deg, #d86a85 20%, #104de4 100%);
    }

