.contact-us-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-align: right;
}

.contact-us-button {
    background-color: #007bff; /* Blue button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.contact-us-button:hover {
    background-color: #0056b3;
}

.messangers-list-container {
    position: relative;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 10px; /* Space between button and list */
}

.messangers-list-container.show {
    max-height: 500px; /* Adjust based on the content height */
    opacity: 1;
}

.messangers-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.messangers-list li {
    margin: 5px 0;
}

.messangers-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.messangers-list a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.messangers-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.arcu-item-label {
    display: flex;
    flex-direction: column;
}

.arcu-item-title {
    font-size: 14px;
    font-weight: bold;
}
