:root {
    --cbh-primary: #0D6EFD;
    --cbh-primary-dark: #0b5ed7;
    --cbh-secondary: #6c757d;
    --cbh-text: #212529;
    --cbh-muted: #6c757d;
    --cbh-bg-light: #f8f9fa;
    --cbh-border: #dee2e6;
}

.cbh-hipaa-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--cbh-text);
    line-height: 1.6;
}

/* Base Container */
.cbh-hipaa-container .cbh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.cbh-hipaa-container h1, .cbh-hipaa-container h2, .cbh-hipaa-container h3 {
    margin-top: 0;
    color: #111;
}

/* Section Header */
.cbh-hipaa-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.cbh-hipaa-section-header h2 {
    font-size: 2.2rem;
    color: var(--cbh-primary);
    margin-bottom: 15px;
}
.cbh-hipaa-section-header p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* Hero Section */
.cbh-hipaa-hero {
    background-color: var(--cbh-primary);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.cbh-hipaa-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}
.cbh-hipaa-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Intro Section */
.cbh-hipaa-intro {
    padding: 80px 0 40px 0;
    background-color: #ffffff;
}
.cbh-hipaa-intro-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #333;
    text-align: center;
}
.cbh-hipaa-intro-body p {
    margin-bottom: 20px;
}
.cbh-hipaa-intro-body strong {
    color: var(--cbh-primary);
}

/* Section 1: Authorization */
.cbh-hipaa-auth {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.cbh-hipaa-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.cbh-hipaa-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--cbh-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cbh-hipaa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.cbh-hipaa-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #222;
}
.cbh-hipaa-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Section 2: Rights */
.cbh-hipaa-rights {
    padding: 60px 0;
    background-color: #ffffff;
}
.cbh-hipaa-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.cbh-hipaa-list-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--cbh-primary);
}
.cbh-hipaa-list-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--cbh-primary);
}
.cbh-hipaa-list-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Section 3: Contact */
.cbh-hipaa-contact {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}
.cbh-hipaa-contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.cbh-hipaa-contact-box h2 {
    color: var(--cbh-primary);
    margin-bottom: 15px;
}
.cbh-hipaa-contact-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}
.cbh-hipaa-contact-details {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 8px;
}
.cbh-hipaa-contact-details h3 {
    margin: 0 0 10px 0;
    color: #222;
}
.cbh-hipaa-contact-details p {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cbh-hipaa-hero h1 { font-size: 2.2rem; }
    .cbh-hipaa-section-header h2 { font-size: 1.8rem; }
    .cbh-hipaa-contact-box { padding: 30px 20px; }
}
