#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

#whatsapp-button:hover {
    background-color: #128C7E;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

#whatsapp-button .whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    fill: white;
}

#whatsapp-button span {
    font-size: 16px;
    font-weight: bold;
}

#whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.popup-header {
    background-color: #075E54;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    margin: 0;
	    color: white;
    font-size: 18px;
}

#close-popup {
    cursor: pointer;
    font-size: 24px;
}

.popup-body {
    padding: 20px;
}

.popup-body p {
    margin-bottom: 15px;
    color: #333;
}

.contact {
    display: flex;
    align-items: center;
    background-color: #F0F0F0;
    border-radius: 50px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact:hover {
    background-color: #E0E0E0;
}

.contact .whatsapp-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.contact .whatsapp-icon.green {
    fill: #25D366;
}

.contact span {
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 480px) {
    #whatsapp-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
    }

    #whatsapp-popup {
        bottom: 80px;
        right: 10px;
        width: calc(100% - 20px);
    }
}