/* Additional mobile center-alignment styles */
@media (max-width: 768px) {

    /* Center all section content */
    .section {
        text-align: center;
    }

    /* Center service and feature cards */
    .service-card {
        text-align: center;
    }

    /* Center contact section */
    .contact-grid>div:first-child {
        text-align: center;
    }

    .contact-grid>div:first-child>div {
        justify-content: center;
    }
}