/* CPR Documentation BEM Styles */
.cpr-doc {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--qc-color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.cpr-doc__header {
    background: linear-gradient(135deg, #553c9a, #6b46c1);
    color: white;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cpr-doc__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.cpr-doc__header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cpr-doc__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cpr-doc__lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cpr-doc__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Info Bar */
.cpr-doc__info-bar {
    background: linear-gradient(to right, #9f7aea, #6b46c1);
    color: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.cpr-doc__info-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cpr-doc__info-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.cpr-doc__info-text {
    flex-grow: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.cpr-doc__info-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Main Content Area */
.cpr-doc__content {
    padding: 3rem 0;
    background-color: #f7fafc;
}

/* Sidebar Navigation */
.cpr-doc__sidebar {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: sticky;
    top: 20px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.cpr-doc__sidebar-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cpr-doc__sidebar-icon {
    color: #6b46c1;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.cpr-doc__sidebar-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.cpr-doc__nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cpr-doc__nav-item {
    margin-bottom: 0.5rem;
}

.cpr-doc__nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.cpr-doc__nav-link:hover {
    background-color: rgba(107, 70, 193, 0.08);
    color: #6b46c1;
    text-decoration: none;
}

.cpr-doc__nav-link--active {
    background-color: rgba(107, 70, 193, 0.08);
    color: #6b46c1;
    font-weight: 600;
    border-left-color: #6b46c1;
}

/* Content Sections */
.cpr-doc__section {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #6b46c1;
    transition: all 0.3s ease;
}

.cpr-doc__section:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.cpr-doc__section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    font-size: 1.875rem;
    font-weight: 700;
    color: #553c9a;
}

.cpr-doc__section-title::after {
    content: '';
    height: 2px;
    width: 60px;
    background-color: #6b46c1;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.cpr-doc__section-intro {
    margin-bottom: 1.5rem;
}

/* Features Grid */
.cpr-doc__features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__feature {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #6b46c1;
    height: 100%;
}

.cpr-doc__feature:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.cpr-doc__feature-icon {
    margin-bottom: 1rem;
    color: #6b46c1;
}

.cpr-doc__feature-icon .material-icons {
    font-size: 2.25rem;
}

.cpr-doc__feature-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.cpr-doc__feature-text {
    margin: 0;
}

/* Course Options */
.cpr-doc__options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__option {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.cpr-doc__option:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.cpr-doc__option-header {
    background-color: #6b46c1;
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.cpr-doc__option-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.cpr-doc__option-title {
    margin: 0;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.cpr-doc__option-body {
    padding: 1.5rem;
}

.cpr-doc__option-body p {
    margin-bottom: 1rem;
}

/* Logistics */
.cpr-doc__logistics {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__logistics-item {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cpr-doc__logistics-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color: rgba(107, 70, 193, 0.08);
}

.cpr-doc__logistics-icon {
    margin-bottom: 1rem;
    color: #6b46c1;
}

.cpr-doc__logistics-icon .material-icons {
    font-size: 2.25rem;
}

.cpr-doc__logistics-content {
    flex-grow: 1;
}

.cpr-doc__logistics-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

/* Course Content Tabs */
.cpr-doc__tabs {
    margin-bottom: 1.5rem;
}

.cpr-doc__tabs .nav-tabs {
    border-bottom: 2px solid #6b46c1;
    margin-bottom: 1.5rem;
}

.cpr-doc__tabs .nav-link {
    color: #4a5568;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.cpr-doc__tabs .nav-link.active,
.cpr-doc__tabs .nav-link:hover {
    color: #6b46c1;
    border-bottom-color: #6b46c1;
    background-color: transparent;
}

.cpr-doc__tabs .tab-content {
    padding: 1rem;
}

.cpr-doc__content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpr-doc__content-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e2e8f0;
}

.cpr-doc__content-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cpr-doc__content-icon {
    flex-shrink: 0;
    width: 50px;
    color: #6b46c1;
}

.cpr-doc__content-icon .material-icons {
    font-size: 2rem;
}

.cpr-doc__content-text {
    flex-grow: 1;
}

.cpr-doc__content-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #553c9a;
}

/* Hands-On Practice */
.cpr-doc__practice {
    background-color: rgba(107, 70, 193, 0.08);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.cpr-doc__practice-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cpr-doc__practice-icon {
    font-size: 2rem;
    color: #6b46c1;
    margin-right: 1rem;
}

.cpr-doc__practice-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

/* Certification */
.cpr-doc__certs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__cert {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cpr-doc__cert:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color: rgba(107, 70, 193, 0.08);
}

.cpr-doc__cert-icon {
    margin-bottom: 1rem;
    color: #6b46c1;
}

.cpr-doc__cert-icon .material-icons {
    font-size: 2.25rem;
}

.cpr-doc__cert-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

/* Benefits List */
.cpr-doc__benefits {
    background-color: rgba(107, 70, 193, 0.08);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.cpr-doc__benefits-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.cpr-doc__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.cpr-doc__benefits-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cpr-doc__benefits-icon {
    color: #6b46c1;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Compliance */
.cpr-doc__compliance {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__compliance-card {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cpr-doc__compliance-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color: rgba(107, 70, 193, 0.08);
}

.cpr-doc__compliance-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cpr-doc__compliance-icon {
    font-size: 1.75rem;
    color: #6b46c1;
    margin-right: 1rem;
}

.cpr-doc__compliance-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.cpr-doc__compliance-cta {
    background-color: rgba(107, 70, 193, 0.08);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.cpr-doc__compliance-cta-icon {
    flex-shrink: 0;
    font-size: 2.25rem;
    color: #6b46c1;
    margin-right: 1.5rem;
}

.cpr-doc__compliance-cta-content {
    flex-grow: 1;
}

.cpr-doc__compliance-cta-title {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

/* Instructors */
.cpr-doc__instructors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__instructor-card {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cpr-doc__instructor-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color: rgba(107, 70, 193, 0.08);
}

.cpr-doc__instructor-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cpr-doc__instructor-icon {
    font-size: 1.75rem;
    color: #6b46c1;
    margin-right: 1rem;
}

.cpr-doc__instructor-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.cpr-doc__instructor-quote {
    background-color: rgba(107, 70, 193, 0.08);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
}

.cpr-doc__instructor-quote blockquote {
    margin: 0;
    padding: 0 0 0 1.5rem;
    border-left: 3px solid #6b46c1;
}

.cpr-doc__instructor-quote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.cpr-doc__instructor-quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #553c9a;
}

/* Customization */
.cpr-doc__customization {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__customization-card {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cpr-doc__customization-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color: rgba(107, 70, 193, 0.08);
}

.cpr-doc__customization-icon {
    margin-bottom: 1rem;
    color: #6b46c1;
}

.cpr-doc__customization-icon .material-icons {
    font-size: 2.25rem;
}

.cpr-doc__customization-content {
    flex-grow: 1;
}

.cpr-doc__customization-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.cpr-doc__customization-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(107, 70, 193, 0.08);
    border-radius: 0.5rem;
}

/* FAQ Accordion (Phase 3D, Workstream 2: layered on top of the
   shared .qc-accordion__* rules from design-system/components.css --
   see components/ui.html.twig's accordion() macro) */
.cpr-doc__accordion.qc-accordion .qc-accordion__item {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cpr-doc__accordion .qc-accordion__trigger {
    background-color: white;
    font-weight: 600;
    font-size: 1.125rem;
    color: #2d3748;
}

.cpr-doc__accordion .qc-accordion__item[open] .qc-accordion__trigger {
    background-color: rgba(107, 70, 193, 0.08);
    color: #6b46c1;
}

.cpr-doc__accordion .qc-accordion__panel {
    background-color: white;
    border-top: 1px solid #e2e8f0;
}

/* Contact */
.cpr-doc__contact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpr-doc__contact-card {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.cpr-doc__contact-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color: rgba(107, 70, 193, 0.08);
}

.cpr-doc__contact-icon {
    margin-bottom: 1rem;
    color: #6b46c1;
}

.cpr-doc__contact-icon .material-icons {
    font-size: 2.25rem;
}

.cpr-doc__contact-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.cpr-doc__contact-text {
    margin-bottom: 0.25rem;
}

.cpr-doc__contact-subtext {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
}

.cpr-doc__scheduling-note {
    background-color: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.cpr-doc__scheduling-icon {
    flex-shrink: 0;
    color: #6b46c1;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Buttons */
.cpr-doc__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.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
}

.cpr-doc__btn--primary {
    color: white;
    background-color: #6b46c1;
    border-color: #6b46c1;
}

.cpr-doc__btn--primary:hover {
    background-color: #553c9a;
    border-color: #553c9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: white;
}

.cpr-doc__btn--outline {
    color: white;
    border-color: white;
    background-color: transparent;
}

.cpr-doc__btn--outline:hover {
    background-color: white;
    color: #6b46c1;
    text-decoration: none;
}

.cpr-doc__btn--light {
    color: #6b46c1;
    background-color: white;
    border-color: white;
}

.cpr-doc__btn--light:hover {
    background-color: #f7fafc;
    color: #553c9a;
    text-decoration: none;
}

.cpr-doc__btn--lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.cpr-doc__btn--sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.cpr-doc__btn--pulse {
    animation: pulse 2s infinite;
}

.cpr-doc__btn--pulse:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(107, 70, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cpr-doc__btn--pulse {
        animation: none;
    }
}

/* Mobile Navigation */
.cpr-doc__mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0.75rem;
    display: none;
}

.cpr-doc__mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background-color: #6b46c1;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
}

.cpr-doc__mobile-nav-toggle .material-icons {
    margin-right: 0.5rem;
}

.cpr-doc__mobile-nav-menu {
    position: fixed;
    bottom: 65px;
    left: 1rem;
    right: 1rem;
    background-color: white;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    max-height: 70vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 99;
}

.cpr-doc__mobile-nav-menu--open {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cpr-doc__sidebar {
        display: none;
    }
    
    .cpr-doc__mobile-nav {
        display: block;
    }
    
    .cpr-doc__section-title {
        font-size: 1.5rem;
    }
    
    .cpr-doc__title {
        font-size: 2rem;
    }
    
    .cpr-doc__section {
        padding: 1.5rem;
    }
    
    .cpr-doc__features, 
    .cpr-doc__options,
    .cpr-doc__logistics,
    .cpr-doc__certs,
    .cpr-doc__compliance,
    .cpr-doc__instructors,
    .cpr-doc__customization,
    .cpr-doc__contact {
        grid-template-columns: 1fr;
    }
    
    .cpr-doc__compliance-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cpr-doc__compliance-cta-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cpr-doc__benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cpr-doc__header {
        padding: 2rem 1rem;
    }
    
    .cpr-doc__title {
        font-size: 1.75rem;
    }
    
    .cpr-doc__lead {
        font-size: 1rem;
    }
    
    .cpr-doc__info-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cpr-doc__info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cpr-doc__info-text {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .cpr-doc__cta {
        flex-direction: column;
    }
    
    .cpr-doc__cta .cpr-doc__btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cpr-doc__scheduling-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cpr-doc__scheduling-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
