/*
 * Services Heading Fix
 * One Sphere Solutions
 * Adjusts the position of the "Why Choose Our Services" heading
 */

/* Align the services heading with the cards */
.services-header-row h2 {
    padding-left: 15px;
    margin-left: 10px;
    text-align: left;
}

/* Adjust the vertical bar position */
.services-header-row h2::before {
    left: -10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-header-row h2 {
        padding-left: 15px;
        margin-left: 10px;
        text-align: left;
    }

    .services-header-row h2::before {
        left: -10px;
    }
}

@media (max-width: 576px) {
    .services-header-row h2 {
        padding-left: 15px;
        margin-left: 10px;
        text-align: left;
    }

    .services-header-row h2::before {
        left: -10px;
    }
}
