/*
 * Section Title Adjustments
 * One Sphere Solutions
 * Adjusts the position of section titles for consistent alignment
 */

/* Move Our Team section title to the right more than Our Reach */
.about-team-section .section-title {
    margin-right: -40px !important; /* More right margin than Our Reach section */
}

/* Ensure the underline follows the title */
.about-team-section .section-title::after {
    left: 0 !important; /* Keep the underline aligned with the title start */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .our-reach-section .section-title {
        margin-left: 20px !important; /* Slightly less margin on medium screens */
    }

    .about-team-section .section-title {
        margin-left: 45px !important; /* Keep Our Team more to the right */
    }
}

@media (max-width: 576px) {
    .our-reach-section .section-title {
        margin-left: 15px !important; /* Even less margin on small screens */
    }

    .about-team-section .section-title {
        margin-left: 35px !important; /* Keep Our Team more to the right */
    }
}

@media (max-width: 480px) {
    .our-reach-section .section-title {
        margin-left: 10px !important; /* Minimal margin on very small screens */
    }

    .about-team-section .section-title {
        margin-left: 25px !important; /* Keep Our Team more to the right */
    }
}
