/* Enhanced ROC Compliance Checklist Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --danger-gradient: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Banner Section */
.hero-banner {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ffd89b, #19547b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd89b;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Overview Section */
.overview-section {
    background: #f8f9fa;
}

.overview-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: none;
}

.overview-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    background: var(--primary-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overview-content h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.overview-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-wrapper {
    margin-top: 3rem;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: var(--transition);
}

.timeline-marker.critical .timeline-icon {
    background: var(--danger-gradient);
    box-shadow: 0 8px 25px rgba(252, 70, 107, 0.3);
}

.timeline-marker.urgent .timeline-icon {
    background: var(--warning-gradient);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.3);
}

.timeline-month {
    background: white;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.timeline-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #e9ecef;
    color: #495057;
}

.timeline-badge.critical {
    background: rgba(252, 70, 107, 0.1);
    color: #fc466b;
}

.timeline-badge.urgent {
    background: rgba(245, 87, 108, 0.1);
    color: #f5576c;
}

/* Dashboard Section */
.dashboard-section {
    background: white;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.action-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: white;
    color: #6c757d;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.action-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.action-btn.btn-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.action-btn.btn-danger:hover {
    background: #dc3545;
    color: white;
}

/* Overall Progress Card */
.overall-progress-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.overall-progress-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.progress-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd89b, #19547b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.progress-stat {
    text-align: center;
}

.progress-stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd89b;
}

.progress-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    height: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd89b, #19547b);
    border-radius: 25px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Checklist Section */
.checklist-section {
    background: #f8f9fa;
}

.checklist-header {
    margin-bottom: 3rem;
}

.compliance-accordion {
    max-width: 100%;
}

.accordion-card {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    border: none;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.accordion-header {
    border: none;
}

.accordion-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.accordion-toggle:focus {
    box-shadow: none;
    outline: none;
}

.accordion-toggle:not(.collapsed) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #667eea;
}

.accordion-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.accordion-toggle:not(.collapsed) .accordion-icon {
    background: var(--success-gradient);
    transform: scale(1.1);
}

.accordion-content {
    flex: 1;
}

.accordion-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.accordion-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.accordion-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: #e9ecef;
    color: #495057;
    white-space: nowrap;
}

.accordion-badge.critical {
    background: rgba(252, 70, 107, 0.1);
    color: #fc466b;
    border: 1px solid rgba(252, 70, 107, 0.2);
}

.accordion-badge.conditional {
    background: rgba(240, 147, 251, 0.1);
    color: #f093fb;
    border: 1px solid rgba(240, 147, 251, 0.2);
}

.accordion-arrow {
    color: #6c757d;
    font-size: 1.2rem;
    transition: var(--transition);
}

.accordion-toggle:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
    color: #667eea;
}

.accordion-body {
    padding: 2rem;
    background: white;
}

/* Checklist Items */
.compliance-checklist {
    padding: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.checklist-item:hover {
    background: white;
    border-color: #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.checklist-item.completed {
    background: rgba(17, 153, 142, 0.05);
    border-color: rgba(17, 153, 142, 0.2);
}

.item-checkbox {
    position: relative;
    flex-shrink: 0;
}

.form-check-input {
    width: 24px;
    height: 24px;
    margin: 0;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: var(--transition);
}

.form-check-input:checked {
    background: var(--success-gradient);
    border-color: #11998e;
    box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.2);
}

.checkbox-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.form-check-input:checked + .checkbox-label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.item-content {
    flex: 1;
}

.item-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: block;
    line-height: 1.4;
}

.item-details {
    margin: 0.75rem 0 0 0;
    padding-left: 1rem;
    list-style: none;
}

.item-details li {
    position: relative;
    margin-bottom: 0.5rem;
    color: #6c757d;
    line-height: 1.4;
    padding-left: 1.5rem;
}

.item-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.item-deadline {
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Compliance Info */
.compliance-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
    font-size: 0.9rem;
}

.info-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.info-item.penalty i {
    color: #dc3545;
}

/* Progress Indicators */
.section-progress {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.section-progress-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.section-progress-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

.section-progress-text {
    font-size: 0.85rem;
    color: #6c757d;
}

.section-progress-bar {
    height: 8px;
    background: #f1f3f4;
    border-radius: 4px;
    overflow: hidden;
}

.section-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.section-progress-fill.low {
    background: var(--danger-gradient);
}

.section-progress-fill.medium {
    background: var(--warning-gradient);
}

.section-progress-fill.high {
    background: var(--success-gradient);
}

/* Information Section */
.info-section {
    background: white;
}

.info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

.info-header {
    padding: 2rem 2rem 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.info-header i {
    font-size: 2rem;
    color: #ffd89b;
}

.info-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-content {
    padding: 1rem 2rem 2rem 2rem;
    background: white;
    color: #2c3e50;
    position: relative;
    z-index: 2;
}

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

.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.warning-item:last-child {
    border-bottom: none;
}

.warning-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.warning-text {
    flex: 1;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: #ffd89b;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary,
.btn-outline-primary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid white;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-outline-primary {
    background: transparent;
    color: white;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .action-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .controls-left,
    .controls-right {
        width: 100%;
        text-align: center;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .overview-card {
        padding: 2rem;
    }
    
    .accordion-toggle {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .accordion-content h3 {
        font-size: 1.1rem;
    }
    
    .checklist-item {
        padding: 1rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .accordion-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Dark Theme Support */
body.dark-theme .overview-card,
body.dark-theme .accordion-card,
body.dark-theme .checklist-item {
    background: #2a2a2a;
    color: #e0e0e0;
}

body.dark-theme .accordion-toggle:not(.collapsed) {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
}

body.dark-theme .item-title {
    color: #e0e0e0;
}

body.dark-theme .item-details li {
    color: #bbb;
}

body.dark-theme .compliance-info {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
}

body.dark-theme .info-content {
    background: #2a2a2a;
    color: #e0e0e0;
}

/* Print Styles */
@media print {
    .hero-banner,
    .action-controls,
    .cta-section {
        display: none !important;
    }
    
    .accordion-collapse {
        display: block !important;
    }
    
    .accordion-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .checklist-item {
        break-inside: avoid;
    }
    
    .timeline-icon,
    .accordion-icon {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}