/* Legacy proposals.css - now imports modular files */

@import url('proposals/base.css');

/* Keep existing styles for other proposals until they're migrated */
/* Featured proposal cards */
.featured-proposal-card {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-proposal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.proposal-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.proposal-link:hover {
    color: #1a472a;
}

/* All the existing styles for other proposals remain here until migration */
/* Proposal-specific styles */
.proposal-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 2rem 0;
}

.proposal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.proposal-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.status-research {
    background: #ff6b6b;
    color: white;
}

.status-development {
    background: #ffa726;
    color: white;
}

.proposal-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.last-updated {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.proposal-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.proposal-summary {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.proposal-summary p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.proposal-content {
    padding: 3rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.proposal-nav {
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2d5a3d;
}

.proposal-nav h3 {
    margin-bottom: 1rem;
    color: #2d5a3d;
    font-size: 1.1rem;
}

.proposal-nav ul {
    list-style: none;
    padding: 0;
}

.proposal-nav li {
    margin-bottom: 0.5rem;
}

.proposal-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.proposal-nav a:hover {
    color: #2d5a3d;
}

.proposal-nav a.active {
    color: #2d5a3d;
    font-weight: 600;
}

.content-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: #2d5a3d;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.content-section h4 {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Problem highlighting */
.problem-highlight {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.problem-highlight h3 {
    color: #c53030;
    margin-bottom: 1rem;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.problem-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Failure analysis boxes */
.failure-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.failure-point {
    background: #fff8e1;
    border: 1px solid #ffcc02;
    border-radius: 8px;
    padding: 1.5rem;
}

.failure-point h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

/* Case study boxes */
.case-study-box {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.case-study-box h4 {
    color: #6a1b9a;
    margin-bottom: 1rem;
}

.failure-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.failure-example {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
}

.failure-example h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Solution principles */
.solution-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 1.5rem;
}

.principle h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

/* Institutional framework */
.institutional-framework {
    background: #f0f4f8;
    border: 1px solid #3f51b5;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.institutional-framework h4 {
    color: #1a237e;
    margin-bottom: 1rem;
}

/* Model explanation */
.model-explanation {
    background: #f3e5f5;
    border-left: 4px solid #9c27b0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}

/* Penalty framework */
.penalty-tiers {
    margin: 2rem 0;
}

.penalty-tier {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.penalty-tier h4 {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1rem 2rem;
    border-radius: 10px 10px 0 0;
}

.penalty-tier p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.penalty-tier ul {
    list-style: none;
    padding: 0;
}

.penalty-tier li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    border-left: 3px solid #1976d2;
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 4px;
}

/* Position multipliers */
.position-multipliers {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.position-multipliers ul {
    list-style: none;
    padding: 0;
}

.position-multipliers li {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

/* Asset recovery */
.asset-recovery {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.asset-recovery h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Investigation powers */
.investigation-powers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.power-category {
    background: #f5f5f5;
    border: 1px solid #bbb;
    border-radius: 8px;
    padding: 1.5rem;
}

.power-category h4 {
    color: #333;
    margin-bottom: 1rem;
}

/* Due process */
.due-process {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.due-process h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Appeals structure */
.appeals-structure {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.appeals-structure h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

.appeals-structure ol {
    padding-left: 1.5rem;
}

.appeals-structure li {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
}

/* Implementation phases */
.implementation-phase {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.implementation-phase h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Budget breakdown */
.budget-breakdown {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.budget-breakdown h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Retroactive analysis */
.retroactive-analysis {
    margin: 2rem 0;
}

.case-study {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.case-study h4 {
    color: #1976d2;
    margin-bottom: 1.5rem;
}

.current-vs-proposed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.current, .proposed {
    padding: 1.5rem;
    border-radius: 8px;
}

.current {
    background: #ffebee;
    border: 1px solid #f44336;
}

.proposed {
    background: #e8f5e8;
    border: 1px solid #4caf50;
}

.current h5 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.proposed h5 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* International examples */
.international-example {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.international-example p:first-child {
    font-weight: 600;
    color: #6a1b9a;
}

/* Action categories */
.action-category {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.action-category h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.action-template {
    background: #f8f9fa;
    border-left: 4px solid #1976d2;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
}

/* Coalition targets */
.coalition-targets {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.coalition-targets h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

/* Success metrics */
.success-metrics {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.success-metrics h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Call to action */
.call-to-action {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.call-to-action h3 {
    color: white;
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Featured proposal cards */
.featured-proposal-card {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-proposal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.proposal-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.proposal-link:hover {
    color: #1a472a;
}

/* Additional styling for Closing the £70,000 Reporting Loophole proposal */

/* Corruption scenarios */
.corruption-scenarios {
    margin: 2rem 0;
}

.scenario-card {
    background: #fff8e1;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.scenario-card h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

.scenario-card ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.scenario-card ol li {
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

.scenario-impact {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: #d32f2f;
}

/* Democratic impact */
.democratic-impact {
    margin: 3rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.impact-item {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 1.5rem;
}

.impact-item h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* System analysis */
.system-analysis {
    background: #f5f5f5;
    border: 1px solid #bbb;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.threshold-list {
    list-style: none;
    padding: 0;
}

.threshold-list li {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Loophole exploitation */
.loophole-exploitation {
    margin: 2rem 0;
}

.exploitation-method {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.exploitation-method h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Oversight failures */
.oversight-failures {
    margin: 2rem 0;
}

.failure-analysis {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.failure-analysis h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Reform overview */
.reform-overview {
    margin: 2rem 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle-card {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.principle-card h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Legislative framework */
.legislative-framework {
    margin: 2rem 0;
}

.framework-section {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.framework-section h4 {
    color: #6a1b9a;
    margin-bottom: 1.5rem;
}

.legislative-text {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.legislative-text h5 {
    color: #1976d2;
    margin: 1rem 0 0.5rem 0;
    font-family: inherit;
}

.legislative-text p {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.legislative-text ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

/* Tech architecture */
.tech-architecture {
    margin: 2rem 0;
}

.system-component {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.system-component h4 {
    color: #0d47a1;
    margin-bottom: 1.5rem;
}

.component-details {
    margin-top: 1rem;
}

.component-details h5 {
    color: #1565c0;
    margin: 1rem 0 0.5rem 0;
}

/* API specification */
.api-specification {
    margin: 2rem 0;
}

.api-details {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem 0;
}

.api-details h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

.api-details pre {
    background: #263238;
    color: #b0bec5;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.9rem;
}

.api-details code {
    color: #4fc3f7;
}

/* Evidence summary */
.evidence-summary {
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-card h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Historical evidence */
.historical-evidence {
    margin: 2rem 0;
}

.case-study {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.case-study h4 {
    color: #495057;
    margin-bottom: 1rem;
}

.case-details {
    margin-top: 1rem;
}

.case-details h5 {
    color: #6c757d;
    margin: 1rem 0 0.5rem 0;
}

/* Academic research */
.academic-research {
    margin: 2rem 0;
}

.research-finding {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.research-finding h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.research-finding p:first-of-type {
    font-style: italic;
    color: #f57c00;
    margin-bottom: 1rem;
}

.finding-details {
    margin-top: 1rem;
}

.finding-details h5 {
    color: #ef6c00;
    margin: 1rem 0 0.5rem 0;
}

/* Polling data */
.polling-data {
    margin: 2rem 0;
}

.poll-result {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.poll-result h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.poll-breakdown {
    margin: 1rem 0;
}

.poll-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
}

.poll-percentage {
    font-weight: bold;
    color: #1b5e20;
    min-width: 60px;
    font-size: 1.1rem;
}

.poll-response {
    margin-left: 1rem;
}

/* Precedent overview */
.precedent-overview {
    margin: 2rem 0;
}

/* Country examples */
.country-examples {
    margin: 2rem 0;
}

.country-case {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.country-case h4 {
    color: #6a1b9a;
    margin-bottom: 1.5rem;
}

.country-details {
    margin-top: 1rem;
}

.country-details h5 {
    color: #8e24aa;
    margin: 1rem 0 0.5rem 0;
}

/* Comparative analysis */
.comparative-analysis {
    margin: 2rem 0;
}

.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #1976d2;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table .uk-row {
    background: #ffebee;
    font-weight: 600;
}

.comparison-table .uk-row td {
    color: #d32f2f;
}

.comparison-conclusion {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: #e65100;
}

/* Timeline overview */
.timeline-overview {
    margin: 2rem 0;
}

/* Implementation phases */
.implementation-phases {
    margin: 2rem 0;
}

.phase-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.phase-header {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phase-header h4 {
    color: white;
    margin: 0;
}

.phase-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phase-content {
    padding: 2rem;
}

.phase-content h5 {
    color: #1565c0;
    margin: 1.5rem 0 0.5rem 0;
}

/* Budget estimate */
.budget-estimate {
    margin: 2rem 0;
}

.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cost-item {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.cost-item h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.cost-item ul {
    list-style: none;
    padding: 0;
}

.cost-item li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}

.cost-total {
    background: #2e7d32;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.cost-comparison {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 4px;
    font-weight: 600;
    color: #e65100;
}

/* Action overview */
.action-overview {
    margin: 2rem 0;
}

/* Action categories */
.action-categories {
    margin: 2rem 0;
}

.action-list {
    margin-top: 1rem;
}

.action-list h5 {
    color: #1565c0;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 2px solid #bbdefb;
    padding-bottom: 0.5rem;
}

/* Immediate actions */
.immediate-actions {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.immediate-actions h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-action {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.quick-action h4 {
    color: white;
    margin-bottom: 1rem;
}

.quick-action ul {
    list-style: none;
    padding: 0;
}

.quick-action li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.quick-action li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #81c784;
    font-weight: bold;
}

/* Resources section */
.resources-section {
    margin: 3rem 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
}

.resource-item h4 {
    color: #495057;
    margin-bottom: 1rem;
}

.resource-item ul {
    list-style: none;
    padding: 0;
}

.resource-item li {
    margin-bottom: 0.5rem;
}

.resource-item a {
    color: #1976d2;
    text-decoration: none;
}

.resource-item a:hover {
    text-decoration: underline;
}

/* Success vision */
.success-vision {
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.success-vision h3 {
    color: white;
    margin-bottom: 2rem;
}

.vision-statement p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.vision-statement p:last-child {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Additional styling for CBDC Safeguards proposal */

/* Threat categories */
.threat-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.threat-category {
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 2rem;
}

.threat-category h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Precedent examples */
.precedent-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.precedent-card {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
}

.precedent-card h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

.precedent-card p {
    font-weight: 600;
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Department risks */
.department-risks {
    margin: 2rem 0;
}

.department-risk {
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.department-risk h4 {
    color: #f57c00;
    margin-bottom: 1.5rem;
}

.risk-scenario {
    margin-top: 1rem;
}

.risk-scenario h5 {
    color: #ef6c00;
    margin-bottom: 1rem;
}

.risk-scenario ul {
    list-style: none;
    padding: 0;
}

.risk-scenario li {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

/* Control mechanisms */
.control-mechanisms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.control-category {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 2rem;
}

.control-category h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Rights framework */
.rights-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-principle {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.right-principle h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.right-principle p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Constitutional protections */
.constitutional-protections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.protection-category {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
}

.protection-category h4 {
    color: #6a1b9a;
    margin-bottom: 1rem;
}

/* Privacy requirements */
.privacy-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-category {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
}

.requirement-category h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Access controls */
.access-controls {
    margin: 2rem 0;
}

.access-tier {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.access-tier h4 {
    margin-bottom: 1rem;
}

.access-tier:nth-child(1) {
    border-color: #f44336;
    background: #ffebee;
}

.access-tier:nth-child(1) h4 {
    color: #d32f2f;
}

.access-tier:nth-child(2) {
    border-color: #ff9800;
    background: #fff3e0;
}

.access-tier:nth-child(2) h4 {
    color: #e65100;
}

.access-tier:nth-child(3) {
    border-color: #4caf50;
    background: #e8f5e8;
}

.access-tier:nth-child(3) h4 {
    color: #2e7d32;
}

.access-tier p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.access-tier ul {
    list-style: none;
    padding: 0;
}

.access-tier li {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid currentColor;
}

/* Opt-in framework */
.opt-in-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.opt-in-principle {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.opt-in-principle h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Payment alternatives */
.payment-alternatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.alternative-category {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
}

.alternative-category h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

/* Vulnerable protections */
.vulnerable-protections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.protection-group {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
}

.protection-group h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Merchant protections */
.merchant-protections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.merchant-right {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
}

.merchant-right h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Small business protections */
.small-business-protections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.protection-area {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
}

.protection-area h4 {
    color: #6a1b9a;
    margin-bottom: 1rem;
}

/* Technical requirements */
.technical-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-category {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.tech-category h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Anti-surveillance */
.anti-surveillance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.surveillance-protection {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 2rem;
}

.surveillance-protection h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

/* Offline requirements */
.offline-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.offline-feature {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
}

.offline-feature h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

/* International examples */
.international-examples {
    margin: 2rem 0;
}

.country-example {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.country-example h4 {
    color: #1976d2;
    margin-bottom: 1.5rem;
}

.example-details {
    margin-top: 1rem;
}

.example-details h5 {
    color: #1565c0;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 2px solid #bbdefb;
    padding-bottom: 0.5rem;
}

/* Privacy legislation */
.privacy-legislation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.legislation-example {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
}

.legislation-example h4 {
    color: #6a1b9a;
    margin-bottom: 1rem;
}

/* Engagement strategy */
.engagement-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.engagement-phase {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
}

.engagement-phase h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Campaign goals */
.campaign-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.goal-category {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
}

.goal-category h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Coalition strategy */
.coalition-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.ally-category {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.ally-category h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Status styling for different proposal statuses */
.status-development {
    background: #4caf50;
    color: white;
}

/* Responsive design for CBDC-specific elements */
@media (max-width: 768px) {
    .threat-categories,
    .precedent-examples,
    .control-mechanisms,
    .rights-framework,
    .constitutional-protections,
    .privacy-requirements,
    .opt-in-framework,
    .payment-alternatives,
    .vulnerable-protections,
    .merchant-protections,
    .small-business-protections,
    .technical-requirements,
    .anti-surveillance,
    .offline-requirements,
    .privacy-legislation,
    .engagement-strategy,
    .campaign-goals,
    .coalition-strategy {
        grid-template-columns: 1fr;
    }
    
    .access-tier,
    .country-example,
    .precedent-card,
    .department-risk,
    .threat-category {
        margin-bottom: 1.5rem;
    }
}

/* Additional styling for Securing Home Networks proposal */

/* Attack vectors and categories */
.attack-vectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.attack-category {
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 2rem;
}

.attack-category h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Security implications */
.security-implications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.implication-card {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
}

.implication-card h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

/* Vulnerability analysis */
.vulnerability-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.vulnerability-category {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
}

.vulnerability-category h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Knowledge gaps */
.knowledge-gaps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gap-category {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 2rem;
}

.gap-category h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Vulnerable groups */
.vulnerable-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.demographic-risk {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 2rem;
}

.demographic-risk h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

/* Equipment requirements */
.equipment-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-category {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.requirement-category h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* UniFi standard */
.unifi-standard {
    margin: 2rem 0;
}

.unifi-features {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.unifi-features h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

.implementation-model {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 8px;
    padding: 2rem;
}

.implementation-model h4 {
    color: #6a1b9a;
    margin-bottom: 1rem;
}

/* Service obligations */
.service-obligations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.obligation-category {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
}

.obligation-category h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Education framework */
.education-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-pillar {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.program-pillar h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Pi-hole program */
.pihole-program {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pihole-education,
.unbound-education {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
}

.pihole-education h4,
.unbound-education h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

/* Targeted programs */
.targeted-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-demographic {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 2rem;
}

.program-demographic h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

/* Security architecture */
.security-architecture {
    margin: 2rem 0;
}

.architecture-layer {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.architecture-layer h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

/* Implementation standards */
.implementation-standards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.standard-category {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
}

.standard-category h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Content filtering */
.content-filtering {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.filtering-category {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 2rem;
}

.filtering-category h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Benefit analysis */
.benefit-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-category {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.benefit-category h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.benefit-total {
    background: #2e7d32;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}

/* ROI analysis */
.roi-analysis {
    margin: 2rem 0;
}

.roi-calculation {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.roi-calculation h4 {
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.roi-result {
    background: #2e7d32;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.roi-payback {
    background: #388e3c;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Implementation lessons */
.implementation-lessons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.lesson-category {
    border-radius: 8px;
    padding: 2rem;
}

.lesson-category:nth-child(1) {
    background: #e8f5e8;
    border: 1px solid #4caf50;
}

.lesson-category:nth-child(1) h4 {
    color: #2e7d32;
}

.lesson-category:nth-child(2) {
    background: #fff3e0;
    border: 1px solid #ff9800;
}

.lesson-category:nth-child(2) h4 {
    color: #e65100;
}

/* Legislative framework */
.legislative-framework {
    margin: 2rem 0;
}

.framework-section {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.framework-section h4 {
    color: #6a1b9a;
    margin-bottom: 1.5rem;
}

/* Enforcement framework */
.enforcement-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.enforcement-mechanism {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
}

.enforcement-mechanism h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Political campaign */
.political-campaign {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.campaign-target {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
}

.campaign-target h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

/* Industry engagement */
.industry-engagement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.engagement-target {
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
}

.engagement-target h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Status styling for technical review */
.status-technical {
    background: #2196f3;
    color: white;
}

/* Responsive adjustments for Securing Home Networks */
@media (max-width: 768px) {
    .attack-vectors,
    .security-implications,
    .vulnerability-analysis,
    .knowledge-gaps,
    .vulnerable-groups,
    .equipment-requirements,
    .service-obligations,
    .education-framework,
    .pihole-program,
    .targeted-programs,
    .implementation-standards,
    .content-filtering,
    .benefit-analysis,
    .implementation-lessons,
    .enforcement-framework,
    .political-campaign,
    .industry-engagement {
        grid-template-columns: 1fr;
    }
    
    .architecture-layer,
    .framework-section,
    .roi-calculation {
        margin-bottom: 1.5rem;
    }
}

/* Additional styling for Online Safety Act Alternative proposal */

/* Voting age contradiction */
.voting-age-contradiction {
    margin: 2rem 0;
}

.contradiction-highlight {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.contradiction-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contradiction-examples {
    margin: 1.5rem 0;
}

.contradiction-examples ul {
    list-style: none;
    padding: 0;
}

.contradiction-examples li {
    background: white;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

.contradiction-conclusion {
    background: #d32f2f;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile VPN solution */
.mobile-vpn-solution {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.mobile-vpn-solution h4 {
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.vpn-explanation {
    margin-bottom: 2rem;
}

.vpn-explanation p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.vpn-benefits,
.vpn-setup {
    margin: 1.5rem 0;
}

.vpn-benefits h5,
.vpn-setup h5 {
    color: #1b5e20;
    margin-bottom: 1rem;
    border-bottom: 2px solid #81c784;
    padding-bottom: 0.5rem;
}

.vpn-benefits ul,
.vpn-setup ul {
    list-style: none;
    padding: 0;
}

.vpn-benefits li,
.vpn-setup li {
    background: white;
    border-left: 4px solid #4caf50;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Cost effectiveness analysis */
.cost-effectiveness {
    margin: 2rem 0;
}

.cost-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.government-approach {
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 2rem;
}

.government-approach h5 {
    color: #d32f2f;
    margin-bottom: 1.5rem;
}

.family-approach {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
}

.family-approach h5 {
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.government-approach ul,
.family-approach ul {
    list-style: none;
    padding: 0;
}

.government-approach li {
    background: white;
    border-left: 4px solid #f44336;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

.family-approach li {
    background: white;
    border-left: 4px solid #4caf50;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Effectiveness comparison table */
.effectiveness-comparison {
    margin: 2rem 0;
    overflow-x: auto;
}

.effectiveness-comparison table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.effectiveness-comparison th,
.effectiveness-comparison td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.effectiveness-comparison th {
    background: #1976d2;
    color: white;
    font-weight: 600;
}

.effectiveness-comparison tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.effectiveness-comparison tbody tr:hover {
    background: #e3f2fd;
}

/* Slippery slope stages */
.slippery-slope {
    margin: 2rem 0;
}

.slope-stage {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slope-stage:nth-child(1) {
    border-color: #ffc107;
    background: #fff8e1;
}

.slope-stage:nth-child(2) {
    border-color: #ff9800;
    background: #fff3e0;
}

.slope-stage:nth-child(3) {
    border-color: #f44336;
    background: #ffebee;
}

.slope-stage:nth-child(4) {
    border-color: #9c27b0;
    background: #f3e5f5;
}

.slope-stage h4 {
    margin-bottom: 1rem;
}

.slope-stage:nth-child(1) h4 { color: #f57c00; }
.slope-stage:nth-child(2) h4 { color: #e65100; }
.slope-stage:nth-child(3) h4 { color: #d32f2f; }
.slope-stage:nth-child(4) h4 { color: #6a1b9a; }

/* Empowerment principles */
.empowerment-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.empowerment-principle {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.empowerment-principle h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Technical overview */
.technical-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.solution-principle {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.solution-principle h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Surveillance-free guarantees */
.surveillance-free {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.privacy-guarantee {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.privacy-guarantee h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Constitutional foundation */
.constitutional-foundation {
    margin: 2rem 0;
}

.legal-principle {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legal-principle h4 {
    color: #1976d2;
    margin-bottom: 1.5rem;
}

.legal-analysis h5 {
    color: #1565c0;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 2px solid #bbdefb;
    padding-bottom: 0.5rem;
}

.legal-analysis p {
    background: #f3e5f5;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #9c27b0;
    margin: 1rem 0;
    font-style: italic;
}

/* UK precedents */
.uk-precedents {
    margin: 2rem 0;
}

.case-study {
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.case-study h4 {
    color: #f57c00;
    margin-bottom: 1.5rem;
}

.case-analysis h5 {
    color: #ef6c00;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 2px solid #ffcc02;
    padding-bottom: 0.5rem;
}

/* Proportionality test */
.proportionality-test {
    margin: 2rem 0;
}

.test-stage {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.test-stage h4 {
    color: #1976d2;
    margin-bottom: 1.5rem;
}

.stage-analysis h5 {
    color: #1565c0;
    margin: 1rem 0 0.5rem 0;
}

.test-result {
    background: #f44336;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-weight: 600;
    text-align: center;
}

.test-stage:first-child .test-result {
    background: #ff9800;
}

/* International rights */
.international-rights {
    margin: 2rem 0;
}

.rights-instrument {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.rights-instrument h4 {
    color: #6a1b9a;
    margin-bottom: 1.5rem;
}

.instrument-analysis h5 {
    color: #4a148c;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 2px solid #ce93d8;
    padding-bottom: 0.5rem;
}

/* Alternative legislation */
.alternative-legislation {
    margin: 2rem 0;
}

.legislative-section {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.legislative-section h4 {
    color: #6a1b9a;
    margin-bottom: 1.5rem;
}

.legislative-text h5 {
    color: #4a148c;
    margin: 1.5rem 0 1rem 0;
    border-bottom: 2px solid #ce93d8;
    padding-bottom: 0.5rem;
}

.legislative-text p {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #9c27b0;
    margin: 1rem 0;
}

.legislative-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legislative-text li {
    background: white;
    border-left: 4px solid #9c27b0;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 0 6px 6px 0;
}

/* Implementation strategy */
.implementation-strategy {
    margin: 2rem 0;
}

.strategy-phase {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.strategy-phase h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

/* Action plan */
.action-plan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.action-category {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.action-category h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Success vision */
.success-vision {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.success-vision h3 {
    color: #1b5e20;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.vision-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2e7d32;
}

.vision-statement p:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b5e20;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Additional styling for Streamlining Crypto Taxation proposal */

/* Tax complexity examples */
.complexity-example {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.complexity-example h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

.complexity-example ul {
    list-style: none;
    padding: 0;
}

.complexity-example li {
    background: white;
    border-left: 4px solid #ff9800;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* International comparison */
.international-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.country-example {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 2rem;
}

.country-example h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

.country-example ul {
    list-style: none;
    padding: 0;
}

.country-example li {
    background: white;
    border-left: 4px solid #2196f3;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Responsive design for crypto taxation proposal */
@media (max-width: 768px) {
    .international-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .complexity-example,
    .country-example {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Fix for Online Safety Act proposal styling issues */

/* Overreach categories grid */
.overreach-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.overreach-category {
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 2rem;
}

.overreach-category h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.overreach-category ul {
    list-style: none;
    padding: 0;
}

.overreach-category li {
    background: white;
    border-left: 4px solid #f44336;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Privacy risks styling */
.privacy-risks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.risk-category {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
}

.risk-category h4 {
    color: #e65100;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.risk-category ul {
    list-style: none;
    padding: 0;
}

.risk-category li {
    background: white;
    border-left: 4px solid #ff9800;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Security failures */
.security-failures {
    margin: 2rem 0;
}

.failure-example {
    background: white;
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.failure-example h4 {
    color: #d32f2f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.failure-details h5 {
    color: #c62828;
    margin: 1.5rem 0 0.8rem 0;
    border-bottom: 2px solid #ffcdd2;
    padding-bottom: 0.5rem;
}

.failure-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.failure-details li {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 0 6px 6px 0;
}

.failure-details p {
    background: #fff3e0;
    border: 1px solid #ff9800;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-style: italic;
}

/* Economic costs */
.economic-costs {
    margin: 2rem 0;
}

.cost-analysis {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
}

.cost-analysis h4 {
    color: #e65100;
    margin-bottom: 1.5rem;
}

.cost-analysis ul {
    list-style: none;
    padding: 0;
}

.cost-analysis li {
    background: white;
    border-left: 4px solid #ff9800;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Router filtering */
.router-filtering {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.filtering-capability {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.filtering-capability h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.filtering-capability ul {
    list-style: none;
    padding: 0;
}

.filtering-capability li {
    background: white;
    border-left: 4px solid #4caf50;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Pi-hole solution */
.pihole-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pihole-benefits,
.pihole-setup {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
}

.pihole-benefits h4,
.pihole-setup h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

.pihole-benefits ul,
.pihole-setup ul {
    list-style: none;
    padding: 0;
}

.pihole-benefits li,
.pihole-setup li {
    background: white;
    border-left: 4px solid #2196f3;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Router features */
.router-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-category {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 2rem;
}

.feature-category h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    background: white;
    border-left: 4px solid #4caf50;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Pi-hole advanced configuration */
.pihole-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.configuration-level {
    background: #f1f8e9;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 2rem;
}

.configuration-level h4 {
    color: #33691e;
    margin-bottom: 1rem;
}

.configuration-level ul {
    list-style: none;
    padding: 0;
}

.configuration-level li {
    background: white;
    border-left: 4px solid #8bc34a;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Education program levels */
.education-program {
    margin: 2rem 0;
}

.program-level {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.program-level h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.program-level ul {
    list-style: none;
    padding: 0;
}

.program-level li {
    background: #f5f5f5;
    border-left: 4px solid #2196f3;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Fix for responsive design */
@media (max-width: 768px) {
    .overreach-categories,
    .privacy-risks,
    .router-filtering,
    .pihole-solution,
    .router-features,
    .pihole-advanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .failure-example,
    .cost-analysis,
    .mobile-vpn-solution,
    .program-level {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Blocklist configuration styling */
.blocklist-config {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blocklist-category {
    background: #f1f8e9;
    border: 2px solid #8bc34a;
    border-radius: 12px;
    padding: 2rem;
}

.blocklist-category h4 {
    color: #33691e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blocklist-category ul {
    list-style: none;
    padding: 0;
}

.blocklist-category li {
    background: white;
    border-left: 4px solid #8bc34a;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

.blocklist-category li strong {
    color: #2e7d32;
    font-weight: 600;
}

/* Fix for responsive design on blocklist config */
@media (max-width: 768px) {
    .blocklist-config {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blocklist-category {
        padding: 1.5rem;
    }
}

/* Additional specific classes for crypto taxation proposal */
.concern-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.concern-category {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
}

.concern-category h4 {
    color: #495057;
    margin-bottom: 1rem;
}

.concern-category ul {
    list-style: none;
    padding: 0;
}

.concern-category li {
    background: white;
    border-left: 4px solid #007bff;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
}

/* Responsive design for concern analysis */
@media (max-width: 768px) {
    .concern-analysis {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concern-category {
        padding: 1.5rem;
    }
}

/* Sources section styling */
.sources-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.sources-section h3 {
    color: #495057;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-list li {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.sources-list a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.sources-list a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Related proposals styling */
.related-proposals {
    margin: 3rem 0;
}

.related-proposals h3 {
    color: #2d5a3d;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
}

.related-card h4 {
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.related-card:hover h4 {
    color: #1a472a;
}

/* Responsive design for sources and related content */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sources-section,
    .related-proposals {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}
