    .hipaa-hero {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }
    .hipaa-content {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 3rem;
    }
    .hipaa-section {
        margin-bottom: 2.5rem;
    }
    .hipaa-section h3 {
        color: #0f1f7a;
        font-weight: 700;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e9ecef;
    }
    .hipaa-section p, .hipaa-section li {
        color: #555;
        line-height: 1.8;
    }
    .toc-card {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 1.5rem;
        position: sticky;
        top: 20px;
    }
    .toc-link {
        display: block;
        padding: 0.5rem 0;
        color: #555;
        text-decoration: none;
        border-bottom: 1px solid #e9ecef;
        transition: all 0.3s ease;
    }
    .toc-link:last-child {
        border-bottom: none;
    }
    .toc-link:hover {
        color: #0f1f7a;
        padding-left: 0.5rem;
    }
    .highlight-box {
        background: linear-gradient(135deg, #e8f4fd 0%, #d4edda 100%);
        border-radius: 10px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    .info-box {
        background: #e8f4fd;
        border-left: 4px solid #0f1f7a;
        border-radius: 0 10px 10px 0;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    .link-card {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 15px;
        padding: 1.5rem;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        text-decoration: none;
        display: block;
    }
    .link-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(15, 31, 122, 0.15);
        border-color: #0f1f7a;
    }
    .link-card i {
        font-size: 2.5rem;
        color: #0f1f7a;
        margin-bottom: 1rem;
    }
    .link-card h5 {
        color: #0f1f7a;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    .link-card p {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    .authority-card {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 1.25rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    .authority-card:hover {
        background: #e8f4fd;
    }
    .authority-card a {
        color: #0f1f7a;
        text-decoration: none;
        font-weight: 600;
    }
    .authority-card a:hover {
        text-decoration: underline;
    }
    .authority-card i {
        color: #0f1f7a;
        margin-right: 0.75rem;
    }
    .faq-item {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .faq-question {
        background: #f8f9fa;
        padding: 1.25rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #0f1f7a;
        transition: all 0.3s ease;
    }
    .faq-question:hover {
        background: #e8f4fd;
    }
    .faq-question i {
        transition: transform 0.3s ease;
    }
    .faq-question.active i {
        transform: rotate(180deg);
    }
    .faq-answer {
        padding: 1.25rem;
        border-top: 1px solid #e9ecef;
        color: #555;
        display: none;
    }
    .faq-answer.show {
        display: block;
    }
    .last-updated {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
