@media (max-width: 768px) {
    body {
        /* Prevent horizontal scrolling on all pages */
        overflow-x: hidden;
    }

    .contact-box {
        width: 90%; /* Make the box wider on small screens */
        padding: 20px;
        margin: 30px auto;
    }

    .contact-box h2 {
        font-size: 24px;
    }

    /* Make the WhatsApp button and text stack vertically if needed */
    .whatsapp-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}