/* Stile pulsante di contatto */
.contact-button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.contact-button {
    background-color: #00aaad;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 600;
    text-align: center;
}

.contact-icons {
    display: none;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 2px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    flex-wrap: nowrap;
}

.contact-icons.show {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contact-icons a img {
    width: 24px;
    height: 24px;
}
