/* ==========================================
   RESPONSIVE UPDATES - Contact Section
   Add this to your existing responsive.css
   ========================================== */

@media (max-width: 768px) {
    /* Contact - 2 columns on tablet */
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* Contact - 1 column on mobile */
    .contact-info {
        grid-template-columns: 1fr;
    }
}