/* Health Screening BEM Styles */
.health-screening {
    --primary-color: #6b46c1;
    --primary-light: #9f7aea;
    --primary-dark: #553c9a;
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.health-screening h1,
.health-screening h2,
.health-screening h3,
.health-screening h4,
.health-screening h5,
.health-screening h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.health-screening p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.health-screening a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.health-screening a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.health-screening__img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.health-screening__hero {
    background: linear-gradient(135deg, #f5f0ff 0%, #ffffff 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.health-screening__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.health-screening__hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.health-screening__hero-content {
    flex: 1;
}

.health-screening__hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.health-screening__hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.health-screening__title {
    font-size: 2.75rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    position: relative;
}

.health-screening__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 999px;
}

.health-screening__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    font-weight: 500;
}

.health-screening__badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

.health-screening__badge-icon {
    font-size: 2.25rem;
    margin-right: 1rem;
}

.health-screening__badge p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.health-screening__cta {
    display: flex;
    gap: 1rem;
}

/* Info Banner */
.health-screening__info-banner {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.health-screening__info-banner p {
    margin: 0;
}

/* Main Content Layout */
.health-screening__wrapper {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.health-screening__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
}

/* Sidebar Navigation */
.health-screening__sidebar {
    position: relative;
}

.health-screening__nav {
    background: var(--background-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 2rem;
    border: 1px solid var(--border-color);
}

.health-screening__nav-title {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.025em;
}

.health-screening__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.health-screening__nav-link {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.2rem;
    color: var(--text-medium);
    border-left: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}

.health-screening__nav-link i {
    margin-right: 0.7rem;
    font-size: 1.25rem;
    color: var(--text-light);
    transition: color 0.2s ease-in-out;
}

.health-screening__nav-link:hover {
    background-color: #f5f0ff;
    color: var(--primary-color);
    text-decoration: none;
}

.health-screening__nav-link:hover i {
    color: var(--primary-color);
}

.health-screening__nav-link.active {
    border-left-color: var(--primary-color);
    background-color: #f5f0ff;
    color: var(--primary-color);
    font-weight: 600;
}

.health-screening__nav-link.active i {
    color: var(--primary-color);
}

.health-screening__sidebar-cta {
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.health-screening__sidebar-cta p {
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Main Content Sections */
.health-screening__main {
    width: 100%;
}

.health-screening__section {
    background: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
}

.health-screening__section-header {
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.health-screening__section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.health-screening__section-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 0;
    font-weight: 500;
}

/* Subsections and Content Layout */
.health-screening__subsection {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.health-screening__subsection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.health-screening__subsection h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.health-screening__subsection h3 i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.health-screening__two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.health-screening__column ul {
    padding-left: 1.5rem;
    margin-bottom: 1.75rem;
}

.health-screening__column ul li {
    margin-bottom: 0.5rem;
}

.health-screening__stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.health-screening__stat-icon {
    font-size: 2.5rem;
    margin-right: 1.2rem;
}

.health-screening__stat-content {
    flex: 1;
}

.health-screening__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.health-screening__stat-label {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

.health-screening__figure {
    margin: 0;
}

.health-screening__figure figcaption {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Industry Cards */
.health-screening__industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.health-screening__industry-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.health-screening__industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.health-screening__industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f5f0ff;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.2rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.health-screening__industry-card:hover .health-screening__industry-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.health-screening__industry-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.health-screening__industry-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
}

/* QuickCare Advantage Section */
.health-screening__advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.health-screening__advantage-card {
    background: var(--background-white);
    padding: 2.2rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.health-screening__advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.health-screening__advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f5f0ff;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.health-screening__advantage-card:hover .health-screening__advantage-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.health-screening__advantage-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.health-screening__advantage-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Process Timeline */
.health-screening__process {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.health-screening__process-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.health-screening__process-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.health-screening__timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding: 1rem 0 0 3.5rem;
}

.health-screening__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.75rem;
    width: 2px;
    background: var(--primary-light);
    transform: translateX(-50%);
}

.health-screening__timeline-step {
    position: relative;
}

.health-screening__step-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    font-size: 1.35rem;
}

.health-screening__step-content {
    background: var(--background-white);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    margin-left: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.health-screening__step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.health-screening__step-content p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/* Client Logos */
.health-screening__clients {
    margin-top: 3.5rem;
    text-align: center;
    padding: 2.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.health-screening__clients h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.health-screening__client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.health-screening__client-logo {
    width: 160px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.health-screening__client-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.health-screening__client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* Accordion Components */
.health-screening__accordion-item {
    margin-bottom: 1.25rem;
    border: none;
}

.health-screening__accordion-header {
    margin: 0;
}

.health-screening__accordion-button {
    background: var(--background-white);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.health-screening__accordion-button:not([aria-expanded="false"]) {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.health-screening__accordion-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
}

.health-screening__button-icon {
    font-size: 1.5rem;
    margin-right: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.health-screening__accordion-button:not([aria-expanded="false"]) .health-screening__button-icon {
    color: white;
}

.health-screening__button-content {
    flex: 1;
}

.health-screening__button-title {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
}

.health-screening__button-hook {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: normal;
    margin-top: 0.35rem;
}

.health-screening__accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.health-screening__accordion-button[aria-expanded="true"]+.health-screening__accordion-collapse {
    max-height: 1000px;
}

.health-screening__accordion-body {
    padding: 1.75rem;
    background: var(--background-white);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: -0.25rem;
    border: 1px solid var(--border-color);
    border-top: none;
}

.health-screening__accordion-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.health-screening__accordion-body li {
    margin-bottom: 0.5rem;
}

/* Features Grid */
.health-screening__features {
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.health-screening__features h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

.health-screening__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
}

.health-screening__feature-card {
    background: var(--background-white);
    padding: 2.2rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.health-screening__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.health-screening__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f5f0ff;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.health-screening__feature-card:hover .health-screening__feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.health-screening__feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.health-screening__feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Testimonials */
.health-screening__testimonials {
    margin-top: 2.5rem;
    position: relative;
}

.carousel {
    position: relative;
}

.health-screening__testimonial {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: none;
}

.health-screening__testimonial.active {
    display: block;
}

.health-screening__testimonial-content {
    position: relative;
    padding-left: 2.5rem;
}

.health-screening__quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.75rem;
    color: var(--primary-light);
}

.health-screening__testimonial-content p {
    font-size: 1.175rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.health-screening__testimonial-author {
    display: flex;
    flex-direction: column;
}

.health-screening__author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.health-screening__author-title {
    font-size: 0.95rem;
    color: var(--text-light);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background-color 0.2s ease;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-dark);
}

.carousel-indicators {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    padding: 0;
    cursor: pointer;
}

.carousel-indicators .indicator.active {
    background-color: var(--primary-color);
}

/* Benefits */
.health-screening__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.health-screening__benefit-card {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.health-screening__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.health-screening__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f5f0ff;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.health-screening__benefit-card:hover .health-screening__benefit-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.health-screening__benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.health-screening__benefit-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Flip Cards */
.health-screening__industry-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.health-screening__flip-card {
    background-color: transparent;
    height: 320px;
    perspective: 1000px;
}

.health-screening__flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

.health-screening__flip-card:hover .health-screening__flip-card-inner {
    transform: rotateY(180deg);
}

.health-screening__flip-card-front,
.health-screening__flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.health-screening__flip-card-front {
    background: var(--background-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.health-screening__flip-card-back {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: rotateY(180deg);
}

.health-screening__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f5f0ff;
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.health-screening__flip-card-front h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.health-screening__flip-indicator {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.25rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-radius: 999px;
}

.health-screening__flip-card-back h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.health-screening__flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    text-align: left;
    width: 100%;
}

.health-screening__flip-card-back li {
    margin-bottom: 0.85rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.05rem;
}

.health-screening__flip-card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.health-screening__flip-back {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    cursor: pointer;
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.health-screening__custom-cta {
    background: #f5f0ff;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-top: 2.5rem;
    border: 1px solid var(--primary-light);
}

.health-screening__custom-cta p {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* FAQ Section */
.health-screening__faqs {
    margin-top: 2.5rem;
}

.health-screening__faq-item {
    border-bottom: 1px solid var(--border-color);
}

.health-screening__faq-item:last-child {
    border-bottom: none;
}

.health-screening__faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease-in-out;
}

.health-screening__faq-question:hover {
    color: var(--primary-color);
}

.health-screening__faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.health-screening__faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.health-screening__faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.health-screening__faq-question[aria-expanded="true"]+.health-screening__faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* CTA Section */
.health-screening__cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius-md);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.health-screening__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.health-screening__cta-content {
    position: relative;
    z-index: 1;
}

.health-screening__cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: white;
}

.health-screening__cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.health-screening__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-md);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
    line-height: 1.4;
}

.health-screening__btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.health-screening__btn--primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.health-screening__btn--primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.health-screening__btn--light {
    color: white !important;
}

.health-screening__btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.health-screening__btn--outline:hover {
    background-color: #f5f0ff;
    color: var(--primary-dark);
}

.health-screening__btn--block {
    display: block;
    width: 100%;
}

.health-screening__btn--light {
    color: white !important;
}

.health-screening__btn--lg {
    padding: 0.95rem 2rem;
    font-size: 1.1rem;
}

.health-screening__benefit-list {
    list-style: none;
    padding-left: 0;
}

.health-screening__benefit-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.health-screening__benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* For Screen Readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .health-screening__grid {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .health-screening__grid {
        grid-template-columns: 1fr;
    }

    .health-screening__sidebar {
        margin-bottom: 2rem;
    }

    .health-screening__nav {
        position: static;
    }

    .health-screening__hero-inner {
        flex-direction: column;
    }

    .health-screening__hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .health-screening__two-column {
        grid-template-columns: 1fr;
    }

    .health-screening__column:first-child {
        order: -1;
    }
}

@media (max-width: 767px) {
    .health-screening__hero {
        padding: 3rem 0;
    }

    .health-screening__title {
        font-size: 2rem;
    }

    .health-screening__subtitle {
        font-size: 1.1rem;
    }

    .health-screening__cta {
        flex-direction: column;
    }

    .health-screening__section-header h2 {
        font-size: 1.8rem;
    }

    .health-screening__section-lead {
        font-size: 1.1rem;
    }

    .health-screening__subsection h3 {
        font-size: 1.4rem;
    }

    .health-screening__industry-grid,
    .health-screening__advantage-grid,
    .health-screening__features-grid,
    .health-screening__benefits-grid,
    .health-screening__industry-solutions {
        grid-template-columns: 1fr;
    }

    .health-screening__timeline {
        padding-left: 3rem;
    }

    .health-screening__timeline::before {
        left: 1.25rem;
    }

    .health-screening__step-marker {
        left: -3rem;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .health-screening__step-content {
        padding: 1.25rem;
    }

    .health-screening__button-hook {
        display: none;
    }

    .health-screening__cta-section {
        padding: 2.5rem;
    }

    .health-screening__cta-content h2 {
        font-size: 1.8rem;
    }

    .health-screening__client-logos {
        gap: 1.5rem;
    }

    .health-screening__client-logo {
        width: 120px;
        height: 70px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .health-screening__title {
        font-size: 1.75rem;
    }

    .health-screening__badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .health-screening__badge-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .health-screening__section {
        padding: 1.5rem;
    }

    .health-screening__industry-card,
    .health-screening__advantage-card,
    .health-screening__feature-card,
    .health-screening__benefit-card {
        padding: 1.5rem;
    }

    .health-screening__client-logo {
        width: 100px;
        height: 60px;
    }

    .health-screening__flip-card {
        height: 350px;
    }
}