.compliance-overview {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-overview p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.compliance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.3;
}

.compliance-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.certificate-categories {
    margin-bottom: 5rem;
}

.certificate-categories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.categories-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    gap: 3rem;
}

.category-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    flex: 1;
    margin: 0 1rem;
    font-size: 1.4rem;
}

.cert-count {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-content {
    padding: 2rem;
}

.certificates-list {
    display: grid;
    gap: 1.5rem;
}

.certificate-item {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.certificate-item.active {
    border-color: var(--accent-color);
    background: white;
}

.certificate-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cert-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.cert-logo {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cert-info {
    flex: 1;
}

.cert-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.cert-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.cert-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.cert-status.valid {
    color: #16a34a;
}

.cert-status.expiring {
    color: #f59e0b;
}

.cert-status.expired {
    color: #dc2626;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.cert-details {
    padding: 1.5rem;
    background: #f8fafc;
}

.cert-details p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-scope,
.cert-authority,
.cert-achievements {
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    font-size: 0.9rem;
}

.cert-scope strong,
.cert-authority strong,
.cert-achievements strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.additional-certs {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.additional-certs h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.licenses-overview {
    margin-bottom: 2rem;
}

.licenses-overview p {
    color: #4b5563;
    line-height: 1.6;
}

.licenses-categories {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.license-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.license-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.license-category ul {
    list-style: none;
    padding: 0;
}

.license-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
}

.license-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.license-validity {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #dcfce7;
}

.license-validity h4 {
    color: #16a34a;
    margin-bottom: 1.5rem;
}

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

.validity-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.validity-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #16a34a;
    display: block;
    margin-bottom: 0.25rem;
}

.validity-label {
    color: #64748b;
    font-size: 0.8rem;
}

.memberships-list {
    display: grid;
    gap: 2rem;
}

.membership-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.membership-logo {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.membership-info {
    flex: 1;
}

.membership-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.membership-info p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.membership-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.membership-benefits span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.additional-memberships {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.additional-memberships h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.membership-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.membership-tag {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #bae6fd;
}

.compliance-management {
    background: #f8fafc;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
}

.compliance-management h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.management-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.management-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.framework-pillar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.pillar-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pillar-icon {
    font-size: 2rem;
}

.pillar-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.pillar-content {
    padding: 2rem;
}

.pillar-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pillar-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pillar-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.pillar-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.monitoring-metrics,
.training-stats {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.monitoring-metrics h4,
.training-stats h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.metric-item,
.stat-box {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.8rem;
}

.stat-box strong {
    font-size: 1.2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-box span {
    color: #64748b;
    font-size: 0.8rem;
}

.risk-categories,
.audit-results {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.risk-categories h4,
.audit-results h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.risk-items {
    display: grid;
    gap: 0.5rem;
}

.risk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.risk-item.low {
    border-left: 4px solid #16a34a;
}

.risk-item.medium {
    border-left: 4px solid #f59e0b;
}

.risk-item.high {
    border-left: 4px solid #dc2626;
}

.risk-item strong {
    color: var(--primary-color);
}

.risk-item span {
    font-weight: 600;
    font-size: 0.8rem;
}

.risk-item.low span {
    color: #16a34a;
}

.risk-item.medium span {
    color: #f59e0b;
}

.risk-item.high span {
    color: #dc2626;
}

.audit-timeline {
    display: grid;
    gap: 0.75rem;
}

.audit-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #16a34a;
    font-size: 0.9rem;
    color: #374151;
}

.audit-item strong {
    color: var(--primary-color);
}

.certificate-verification {
    margin-bottom: 5rem;
}

.certificate-verification h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.verification-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.verification-tools {
    display: grid;
    gap: 3rem;
}

.verification-search {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.verification-search h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.search-interface {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-interface input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.search-interface input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-interface button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.search-filters {
    display: flex;
    gap: 1rem;
}

.search-filters select {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
}

.verification-results {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.results-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.results-count {
    color: #64748b;
    font-size: 0.9rem;
}

.results-list {
    display: grid;
    gap: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.result-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-details {
    display: flex;
    gap: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

.result-actions {
    display: flex;
    gap: 0.5rem;
}

.verify-btn,
.download-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.verify-btn {
    background: #f0f9ff;
    color: #0369a1;
}

.verify-btn:hover {
    background: #e0f2fe;
}

.download-btn {
    background: #f0fdf4;
    color: #16a34a;
}

.download-btn:hover {
    background: #dcfce7;
}

.bulk-download {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bulk-download h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bulk-download > p {
    color: #64748b;
    margin-bottom: 2rem;
}

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

.package-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.package-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.download-package-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.download-package-btn:hover {
    background: var(--secondary-color);
}

.compliance-future {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
}

.compliance-future h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.future-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.roadmap-timeline {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.timeline-status.in-progress {
    background: #fef3c7;
    color: #92400e;
}

.timeline-status.planned {
    background: #dbeafe;
    color: #1d4ed8;
}

.timeline-status.future {
    background: #f3e8ff;
    color: #7c3aed;
}

.compliance-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.compliance-cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.compliance-cta > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-option {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-option h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-option p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
}

.cta-guarantee {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-guarantee h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-guarantee p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-guarantee cite {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .compliance-stats,
    .compliance-benefits {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cert-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .management-framework {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid,
    .stats-grid,
    .validity-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .membership-item {
        flex-direction: column;
        text-align: center;
    }
    
    .search-interface {
        flex-direction: column;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .result-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .download-packages {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .compliance-management,
    .compliance-future,
    .compliance-cta {
        padding: 2rem;
    }
}
