    /* Reset and Base Styles */
    .medical-article {
        font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
        color: #333;
        line-height: 1.7;
        font-size: 16px;
        position: relative;
    }

    .medical-article h1,
    .medical-article h2,
    .medical-article h3,
    .medical-article h4,
    .medical-article h5,
    .medical-article h6 {
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: #1a2942;
    }

    .medical-article p {
        margin-bottom: 1.5rem;
    }

    .medical-article a {
        color: #6a3de8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .medical-article a:hover {
        color: #5227cf;
        text-decoration: underline;
    }

    .medical-article strong {
        font-weight: 600;
        color: #1a2942;
    }

    .medical-article em {
        font-style: italic;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #1a2942, #6a3de8);
        color: #fff;
        padding: 4rem 0;
        margin-bottom: 0;
    }

    .hero-section__wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
    }

    .hero-section__content {
        flex: 1;
        min-width: 300px;
    }

    .hero-section__media {
        flex: 1;
        min-width: 300px;
    }

    .hero-section__title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
        line-height: 1.2;
    }

    .hero-section__title--white {
        color: white !important;
    }

    .hero-section__subtitle {
        font-size: 1.3rem;
        font-weight: 400;
        margin-bottom: 2rem;
        opacity: 0.95;
        line-height: 1.5;
    }

    .hero-section__image-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .hero-section__image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .hero-section__image-container:hover .hero-section__image {
        transform: scale(1.03);
    }

    .hero-section__overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(106, 61, 232, 0.95), rgba(26, 41, 66, 0));
        padding: 2rem;
        color: #fff;
        text-align: center;
    }

    .hero-section__stat {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: #fff;
    }

    .hero-section__stat-desc {
        font-size: 1rem;
        opacity: 0.95;
        margin: 0;
    }

    /* Author Styles */
    .author {
        display: flex;
        align-items: center;
        margin-top: 2rem;
    }

    .author__avatar {
        margin-right: 1rem;
    }

    .author__image {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .author__details {
        flex-grow: 1;
    }

    .author__name {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .author__title {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 0.5rem;
    }

    .author__social {
        display: flex;
        gap: 0.75rem;
    }

    .author__link {
        color: #fff;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        opacity: 0.9;
    }

    .author__link:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    /* Article Content Layout */
    .article-content {
        padding: 3rem 0;
        background-color: #f8fafc;
    }

    .article-content__wrapper {
        display: flex;
        gap: 3rem;
        position: relative;
    }

    .article-content__sidebar {
        width: 280px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .article-content__main {
        flex-grow: 1;
        max-width: 800px;
    }

    /* Mobile TOC Toggle */
    .mobile-toc-toggle {
        display: none;
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 99;
    }

    .mobile-toc-toggle__button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #6a3de8;
        color: white;
        border: none;
        border-radius: 30px;
        padding: 10px 20px;
        box-shadow: 0 4px 10px rgba(106, 61, 232, 0.4);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .mobile-toc-toggle__button:hover {
        background-color: #5227cf;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(106, 61, 232, 0.5);
    }

    .mobile-toc-toggle__icon {
        margin-right: 8px;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #6a3de8;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
        cursor: pointer;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #5227cf;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Table of Contents */
    .table-of-contents {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        position: sticky;
        top: 20px;
        border-top: 4px solid #6a3de8;
    }

    .table-of-contents__title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e9ecef;
    }

    .table-of-contents__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .table-of-contents__item {
        margin-bottom: 0.5rem;
    }

    .table-of-contents__link {
        display: block;
        padding: 0.5rem 0.75rem;
        border-radius: 5px;
        color: #495057;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        border-left: 3px solid transparent;
        padding-left: calc(0.75rem - 3px);
    }

    .table-of-contents__link:hover,
    .table-of-contents__link:focus {
        background-color: rgba(106, 61, 232, 0.08);
        color: #6a3de8;
        text-decoration: none;
    }

    .table-of-contents__link.active {
        background-color: rgba(106, 61, 232, 0.15);
        color: #6a3de8;
        font-weight: 600;
        border-left-color: #6a3de8;
    }

    /* Content Sections */
    .content-section {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 2.5rem;
        margin-bottom: 2rem;
        border-top: 4px solid #6a3de8;
    }

    .content-section__title {
        display: flex;
        align-items: center;
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #e9ecef;
        color: #1a2942;
    }

    .content-section__body {
        color: #495057;
        font-size: 1.05rem;
    }

    .section-icon {
        margin-right: 0.75rem;
        color: #6a3de8;
    }

    /* Impact Summary */
    .impact-summary {
        background: linear-gradient(135deg, #f0f4ff, #faf8ff);
        border-radius: 10px;
        padding: 2rem;
        margin-top: 2rem;
        border-left: 4px solid #6a3de8;
        box-shadow: 0 4px 12px rgba(106, 61, 232, 0.1);
    }

    .impact-summary__title {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #1a2942;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stats-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 3px solid #6a3de8;
    }

    .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .stats-card__body {
        padding: 1.5rem;
        text-align: center;
    }

    .stats-card__value {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #6a3de8;
    }

    .stats-card__label {
        font-size: 1rem;
        color: #495057;
        margin: 0;
        line-height: 1.5;
    }

    .impact-summary__text {
        text-align: center;
        font-style: italic;
        color: #6c757d;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    /* Response Examples */
    .content-section__row {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .content-section__main-col {
        flex: 2;
        min-width: 300px;
    }

    .content-section__side-col {
        flex: 1;
        min-width: 250px;
    }

    .response-examples {
        margin: 1.5rem 0;
    }

    .response-example {
        background-color: #f8fafc;
        border-left: 4px solid #6a3de8;
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.25rem;
        border-radius: 0 8px 8px 0;
        transition: all 0.3s ease;
    }

    .response-example:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        background-color: #f0f4ff;
    }

    .response-example__title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        color: #1a2942;
        font-weight: 600;
    }

    .response-example__text {
        margin-bottom: 0;
        line-height: 1.7;
    }

    /* Pull Quote */
    .pull-quote {
        background-color: #f0f4ff;
        border-left: 4px solid #6a3de8;
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 0 8px 8px 0;
    }

    .pull-quote__text {
        font-size: 1.25rem;
        font-style: italic;
        color: #1a2942;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .pull-quote__author {
        display: block;
        text-align: right;
        font-size: 0.9rem;
        color: #6c757d;
        font-style: normal;
        font-weight: 500;
    }

    /* CTA Container */
    .cta-container {
        text-align: center;
        margin: 2.5rem 0 1rem;
    }

    .btn {
        display: inline-block;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        user-select: none;
        border: 1px solid transparent;
        padding: 0.875rem 1.75rem;
        font-size: 1.05rem;
        line-height: 1.5;
        border-radius: 0.4rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn--primary {
        color: #fff !important;
        background-color: #6a3de8;
        border-color: #6a3de8;
    }

    .btn--primary:hover {
        color: #fff !important;
        background-color: #5227cf;
        border-color: #5227cf;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(106, 61, 232, 0.4);
        text-decoration: none;
    }

    /* Industry Grid */
    .industry-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .industry-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 3px solid #6a3de8;
    }

    .industry-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .industry-item__icon {
        font-size: 2.5rem;
        color: #6a3de8;
        margin-bottom: 1rem;
        display: block;
    }

    .industry-item__title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #1a2942;
    }

    .industry-item__list {
        padding-left: 1.25rem;
        margin-bottom: 0;
    }

    .industry-item__list li {
        margin-bottom: 0.6rem;
        line-height: 1.6;
    }

    .industry-item__list li:last-child {
        margin-bottom: 0;
    }

    /* Safety Impact Grid */
    .safety-impact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .impact-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 3px solid #6a3de8;
    }

    .impact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .impact-card__icon {
        font-size: 2.5rem;
        color: #6a3de8;
        margin-bottom: 1rem;
    }

    .impact-card__title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: #1a2942;
    }

    .impact-card__text {
        color: #6c757d;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Safety Metrics */
    .safety-metrics {
        background-color: #f8fafc;
        border-radius: 10px;
        padding: 2rem;
        margin: 2.5rem 0;
    }

    .safety-metrics__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #1a2942;
    }

    .metrics-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .metric-chart {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 3px solid #6a3de8;
    }

    .metric-chart:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .metric-chart__title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1rem;
        color: #1a2942;
        font-weight: 600;
    }

    .metric-chart__description {
        color: #6c757d;
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.7;
    }

    .safety-metrics__caption {
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: 1.5rem;
        font-style: italic;
    }

    /* Future Innovations */
    .future-innovations {
        margin: 2.5rem 0;
    }

    .future-innovations__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #1a2942;
    }

    .innovation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .innovation-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 3px solid #6a3de8;
    }

    .innovation-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .innovation-card__icon {
        font-size: 2.5rem;
        color: #6a3de8;
        margin-bottom: 1rem;
    }

    .innovation-card__title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        color: #1a2942;
        font-weight: 600;
    }

    .innovation-card__text {
        color: #6c757d;
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Key Benefits */
    .key-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin: 2.5rem 0;
    }

    .benefit-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 3px solid #6a3de8;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .benefit-item__icon {
        font-size: 2.5rem;
        color: #6a3de8;
        margin-bottom: 1rem;
    }

    .benefit-item__title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: #1a2942;
    }

    .benefit-item__text {
        color: #6c757d;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Key Takeaway */
    .key-takeaway {
        background: linear-gradient(135deg, #fff5e6, #fff9f0);
        border-radius: 10px;
        padding: 1.5rem;
        margin: 2rem 0;
        border-left: 4px solid #ff9800;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.1);
    }

    .key-takeaway__title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: #1a2942;
        display: flex;
        align-items: center;
    }

    .key-takeaway__title::before {
        content: "💡";
        margin-right: 0.5rem;
        font-size: 1.5rem;
    }

    .key-takeaway__text {
        margin-bottom: 0;
        line-height: 1.7;
    }

    /* Conclusion CTA */
    .conclusion-cta {
        background: linear-gradient(135deg, #f0f4ff, #faf8ff);
        border-radius: 10px;
        padding: 2.5rem;
        margin: 2.5rem 0 1rem;
        text-align: center;
        border-top: 3px solid #6a3de8;
        box-shadow: 0 5px 15px rgba(106, 61, 232, 0.1);
    }

    .conclusion-cta__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: #1a2942;
    }

    .conclusion-cta__text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #495057;
        line-height: 1.7;
    }

    /* FAQ Section */
    .faq-section {
        margin-bottom: 2rem;
    }

    .accordion-item {
        margin-bottom: 1rem;
        border: none;
        border-radius: 10px !important;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        color: #1a2942;
        background-color: #fff;
        box-shadow: none !important;
        font-size: 1.05rem;
    }

    .accordion-button:not(.collapsed) {
        color: #6a3de8;
        background-color: rgba(106, 61, 232, 0.05);
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(106, 61, 232, 0.5);
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a3de8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-body {
        padding: 1.25rem 1.5rem;
        background-color: #fff;
        color: #495057;
        line-height: 1.7;
    }

    /* Author Bio */
    .author-bio {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #f0f4ff, #faf8ff);
        border-radius: 10px;
        padding: 2rem;
        margin-top: 3rem;
        border-top: 3px solid #6a3de8;
        box-shadow: 0 5px 15px rgba(106, 61, 232, 0.1);
    }

    .author-bio__link {
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .author-bio__image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .author-bio__link:hover .author-bio__image {
        transform: scale(1.05);
    }

    .author-bio__content {
        flex-grow: 1;
    }

    .author-bio__heading {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: #1a2942;
    }

    .author-bio__name-link {
        color: #1a2942;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .author-bio__name-link:hover {
        color: #6a3de8;
        text-decoration: none;
    }

    .author-bio__text {
        margin-bottom: 0;
        color: #495057;
        line-height: 1.7;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .article-content__wrapper {
            flex-direction: column;
        }

        .article-content__sidebar {
            width: 100%;
            margin-bottom: 2rem;
            display: none;
        }

        .mobile-toc-toggle {
            display: block;
        }

        .article-content__sidebar.mobile-visible {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 90%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 1000;
            overflow-y: auto;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            padding: 1rem;
        }

        .table-of-contents {
            position: static;
            height: 100%;
            overflow-y: auto;
            border-radius: 0;
            box-shadow: none;
            padding: 1rem;
        }

        .metrics-container,
        .innovation-grid,
        .industry-grid {
            grid-template-columns: 1fr;
        }

        .content-section__row {
            flex-direction: column;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 2.5rem 0;
        }

        .hero-section__title {
            font-size: 1.85rem;
        }

        .hero-section__subtitle {
            font-size: 1.1rem;
        }

        .hero-section__wrapper {
            flex-direction: column;
        }

        .hero-section__content {
            order: 1;
        }

        .hero-section__media {
            order: 0;
            margin-bottom: 2rem;
        }

        .content-section {
            padding: 1.5rem;
        }

        .content-section__title {
            font-size: 1.5rem;
        }

        .stats-grid,
        .safety-impact-grid,
        .key-benefits {
            grid-template-columns: 1fr;
        }

        .btn {
            display: block;
            width: 100%;
        }

        .author-bio {
            flex-direction: column;
            text-align: center;
        }

        .author-bio__link {
            margin-right: 0;
            margin-bottom: 1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-section__title {
            font-size: 1.6rem;
        }

        .hero-section__subtitle {
            font-size: 1rem;
        }

        .content-section__title {
            font-size: 1.35rem;
        }

        .mobile-toc-toggle {
            bottom: 20px;
        }

        .back-to-top {
            bottom: 80px;
        }

        .content-section {
            padding: 1.25rem;
        }

        .impact-summary {
            padding: 1.5rem;
        }
    }

    /* Ensure body overflow is reset when menu is closed */
    body:not(.overflow-hidden) {
        overflow: visible !important;
    }

    body.overflow-hidden {
        overflow: hidden !important;
    }