/* Rimuove eventuali margini del body che potrebbero creare spazi bianchi ai lati */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Stile Link Footer */
.site-footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    display: inline-block;
}

.site-footer .footer-links a:hover {
    color: #c1912f;
    opacity: 1;
    transform: translateX(3px);
}

.site-footer .footer-links li {
    margin-bottom: 12px;
}

/* Personalizzazione Input */
.site-footer .form-control:focus {
    box-shadow: none;
    outline: none;
}

/* Trustpilot Style */
.trustpilot-box {
    cursor: pointer;
    transition: transform 0.2s;
}

.trustpilot-box:hover {
    transform: scale(1.02);
}