.page-jl-talent-solutions {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
    }

    .page-jl-talent-solutions section {
        padding: 60px 20px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    .page-jl-talent-solutions__section-title {
        font-size: 2.5em;
        color: #0056b3; /* A professional blue */
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-jl-talent-solutions__section-subtitle {
        font-size: 1.2em;
        color: #555;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-jl-talent-solutions__hero-button,
    .page-jl-talent-solutions__about-button,
    .page-jl-talent-solutions__cta-button,
    .page-jl-talent-solutions__cta-button-primary,
    .page-jl-talent-solutions__cta-button-secondary {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-align: center;
        box-sizing: border-box;
    }

    .page-jl-talent-solutions__hero-button,
    .page-jl-talent-solutions__cta-button,
    .page-jl-talent-solutions__cta-button-primary {
        background-color: #007bff; /* Primary blue */
        color: #ffffff;
        border: 2px solid #007bff;
    }

    .page-jl-talent-solutions__hero-button:hover,
    .page-jl-talent-solutions__cta-button:hover,
    .page-jl-talent-solutions__cta-button-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-jl-talent-solutions__cta-button-secondary {
        background-color: transparent;
        color: #007bff;
        border: 2px solid #007bff;
        margin-left: 20px;
    }

    .page-jl-talent-solutions__cta-button-secondary:hover {
        background-color: #e0f0ff;
        color: #0056b3;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-jl-talent-solutions__hero-section {
        position: relative;
        color: #ffffff;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        padding-top: 10px; /* Small decorative padding, assuming body has main offset */
        overflow: hidden;
        background-color: #0a192f; /* Dark background for contrast */
    }

    .page-jl-talent-solutions__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-jl-talent-solutions__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Darken image for text readability */
        filter: grayscale(50%); /* Subtle filter */
    }

    .page-jl-talent-solutions__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
        border-radius: 10px;
    }

    .page-jl-talent-solutions__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
        color: #ffffff;
    }

    .page-jl-talent-solutions__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* About Section */
    .page-jl-talent-solutions__about-section {
        background-color: #ffffff;
    }

    .page-jl-talent-solutions__about-content {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .page-jl-talent-solutions__about-text {
        flex: 1;
    }

    .page-jl-talent-solutions__about-text p {
        margin-bottom: 20px;
        font-size: 1.1em;
        color: #444;
    }

    .page-jl-talent-solutions__about-image-wrapper {
        flex: 1;
        min-width: 300px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-jl-talent-solutions__about-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .page-jl-talent-solutions__about-button {
        margin-top: 20px;
        background-color: #28a745; /* Success green */
        border-color: #28a745;
        color: #ffffff;
    }

    .page-jl-talent-solutions__about-button:hover {
        background-color: #218838;
        border-color: #218838;
    }

    /* Services Section */
    .page-jl-talent-solutions__services-section {
        background-color: #f0f8ff; /* Light blue background */
    }

    .page-jl-talent-solutions__services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .page-jl-talent-solutions__service-card {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-jl-talent-solutions__service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-jl-talent-solutions__service-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        object-fit: contain;
        border-radius: 5px;
    }

    .page-jl-talent-solutions__service-title {
        font-size: 1.5em;
        color: #007bff;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-jl-talent-solutions__service-description {
        font-size: 1em;
        color: #666;
    }

    /* Benefits Section */
    .page-jl-talent-solutions__benefits-section {
        background-color: #ffffff;
    }

    .page-jl-talent-solutions__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-jl-talent-solutions__benefit-item {
        background-color: #f8f9fa; /* Light gray background */
        border-left: 5px solid #007bff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .page-jl-talent-solutions__benefit-icon {
        width: 80px; 
        height: 80px; 
        margin-bottom: 15px;
        object-fit: contain;
        border-radius: 5px;
    }

    .page-jl-talent-solutions__benefit-title {
        font-size: 1.4em;
        color: #0056b3;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-jl-talent-solutions__benefit-description {
        font-size: 1em;
        color: #555;
    }

    /* CTA Section */
    .page-jl-talent-solutions__cta-section {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #ffffff;
        text-align: center;
        padding: 80px 20px;
    }

    .page-jl-talent-solutions__cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        font-weight: bold;
        color: #ffffff;
    }

    .page-jl-talent-solutions__cta-description {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #e0e0e0;
    }

    .page-jl-talent-solutions__cta-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* FAQ Section */
    .page-jl-talent-solutions__faq-section {
        background-color: #f9f9f9;
    }

    .page-jl-talent-solutions__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-jl-talent-solutions__faq-item {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-jl-talent-solutions__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: #f0f0f0;
        transition: background-color 0.3s ease;
    }

    .page-jl-talent-solutions__faq-question:hover {
        background-color: #e6e6e6;
    }

    .page-jl-talent-solutions__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #333;
        font-weight: 600;
    }

    .page-jl-talent-solutions__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #007bff;
        transition: transform 0.3s ease;
    }

    .page-jl-talent-solutions__faq-item.active .page-jl-talent-solutions__faq-toggle {
        transform: rotate(45deg); /* Changes + to X or - */
        color: #dc3545; /* Red for active */
    }

    .page-jl-talent-solutions__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #ffffff;
    }

    .page-jl-talent-solutions__faq-item.active .page-jl-talent-solutions__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px !important;
        opacity: 1;
    }

    .page-jl-talent-solutions__faq-answer p {
        margin: 0;
        color: #555;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-jl-talent-solutions section {
            padding: 40px 15px;
        }

        .page-jl-talent-solutions__hero-title {
            font-size: 2.2em;
        }

        .page-jl-talent-solutions__hero-description {
            font-size: 1em;
        }

        .page-jl-talent-solutions__hero-button,
        .page-jl-talent-solutions__about-button,
        .page-jl-talent-solutions__cta-button,
        .page-jl-talent-solutions__cta-button-primary,
        .page-jl-talent-solutions__cta-button-secondary {
            width: 100%;
            max-width: 100%;
            margin-left: 0 !important; /* For cta-button-secondary */
            margin-right: 0 !important;
            margin-bottom: 15px;
        }

        .page-jl-talent-solutions__about-content {
            flex-direction: column;
        }

        .page-jl-talent-solutions__about-image-wrapper {
            width: 100%;
        }

        .page-jl-talent-solutions__services-grid,
        .page-jl-talent-solutions__benefits-grid {
            grid-template-columns: 1fr;
        }

        .page-jl-talent-solutions__service-card,
        .page-jl-talent-solutions__benefit-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-jl-talent-solutions__cta-title {
            font-size: 1.8em;
        }

        .page-jl-talent-solutions__cta-description {
            font-size: 1em;
        }

        .page-jl-talent-solutions__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-jl-talent-solutions__faq-question h3 {
            font-size: 1em;
        }

        /* Image responsiveness */
        .page-jl-talent-solutions__hero-image,
        .page-jl-talent-solutions__about-image,
        .page-jl-talent-solutions__service-icon,
        .page-jl-talent-solutions__benefit-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-jl-talent-solutions__hero-image-wrapper,
        .page-jl-talent-solutions__about-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-jl-talent-solutions__hero-title {
            font-size: 1.8em;
        }
        .page-jl-talent-solutions__section-title {
            font-size: 1.8em;
        }
        .page-jl-talent-solutions__cta-title {
            font-size: 1.5em;
        }
    }