/*
 * Service Pages Positioning
 * One Sphere Solutions
 * Ensures service pages content is properly positioned below navbar
 */

/* Remove any extra space between navbar and content */
.legal-header-section {
    padding-top: 20px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Ensure content starts right below navbar */
.legal-content-image {
    margin-top: 20px;
}

/* Adjust spacing for services cards section */
.services-cards-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Improve header styling */
.legal-header-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #283848;
    display: flex;
    align-items: center;
}

.legal-header-section h1 i {
    margin-right: 15px;
    font-size: 28px;
}

.legal-header-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 90%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .legal-header-section {
        padding-top: 15px;
    }
    
    .legal-header-section h1 {
        font-size: 28px;
    }
    
    .legal-header-section p {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .legal-header-section h1 {
        font-size: 24px;
    }
    
    .legal-header-section h1 i {
        font-size: 22px;
        margin-right: 10px;
    }
    
    .legal-header-section p {
        font-size: 14px;
    }
    
    .services-cards-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}
