.messenger-link {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    text-decoration: none;
}
.messenger-link .messenger-button {
    width: 100%;
    height: 100%;
    background-color: #0084ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.messenger-link .messenger-button:hover {
    transform: scale(1.05);
}
.messenger-link .messenger-icon {
    width: 30px;
    height: 30px;
    fill: white;
}
.messenger-link .content {
    padding: 20px;
}
