/* Phone obfuscation styles */
.phone-obfuscated {
    transition: all 0.3s ease;
}

.phone-obfuscated:hover {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Additional obfuscation for scrapers - hide the actual numbers in CSS */
.phone-obfuscated::before {
    content: attr(data-phone);
    display: none;
}

/* Desktop font size increases for specific elements only */
@media screen and (min-width: 500px) {

    #banner .inner {
        font-size: 1.3em;
    }

    #wrapper .inner .content p {
        font-size: 1.3em;
    }
}