/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90a4;
    --accent-color: #718096;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --background: #ffffff;
    --background-alt: #f7fafc;
    --border: #e2e8f0;
    --success: #38a169;
    --warning: #dd6b20;
    --info: #3182ce;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
}

/* Header and Navigation */
header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section with Background Image */
#hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* Overlay for better text readability */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.85), rgba(74, 144, 164, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem 2rem;
}

#hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

#hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.about-card {
    background: var(--background-alt);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.about-card.highlight {
    border-color: var(--primary-color);
    background: #ebf8ff;
}

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

/* Principles */
.principles {
    list-style: none;
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.principles li {
    padding: 1.5rem;
    background: var(--background-alt);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

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

/* Proof Section */
.proof-points {
    list-style: none;
    font-size: 1.2rem;
    margin: 2rem 0;
}

.proof-points li {
    padding: 0.75rem 0;
    color: var(--success);
    font-weight: 500;
}

.proof-statement {
    background: var(--background-alt);
    padding: 1.5rem;
    border-left: 4px solid var(--success);
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Bill Cards */
.bill-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}

.bill-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bill-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.bill-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    flex: 1;
}

/* Status Badges */
.bill-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.bill-status.seeking-review {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.bill-status.with-politician {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.bill-status.submitted {
    background: #ebf8ff;
    color: #2c5282;
    border: 1px solid #90cdf4;
}

.bill-desc {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bill-highlights {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.bill-highlights strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.bill-highlights ul {
    margin-left: 1.5rem;
}

.bill-highlights li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.bill-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1e3a5f;
}

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

.btn.secondary:hover {
    background: #357a8a;
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn.primary {
    background: var(--success);
}

.btn.primary:hover {
    background: #2f855a;
}

/* Contribute Grid */
.contribute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contribute-card {
    background: var(--background-alt);
    border-radius: 8px;
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
}

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

.contribute-card ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.contribute-card li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    background: var(--background-alt);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* GitHub Explainer */
.github-explainer {
    background: #f7fafc;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
}

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

.github-explainer ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.github-explainer li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Impact Statements */
.impact-statement {
    background: white;
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.impact-statement h3 {
    color: var(--primary-color);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* CTA Section */
#cta {
    text-align: center;
    background: var(--background-alt);
    border-radius: 8px;
    padding: 4rem 2rem;
}

#cta h2 {
    margin-bottom: 1rem;
}

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

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Bill Page Specific Styles */
.bill-title-section {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-box, .solution-box, .approach-note {
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.problem-box {
    background: #fff5f5;
    border-left: 4px solid #c53030;
}

.solution-box {
    background: #f0fff4;
    border-left: 4px solid #38a169;
}

.approach-note {
    background: #ebf8ff;
    border: 2px solid var(--info);
    border-radius: 8px;
}

.avoids-list {
    list-style: none;
    margin-left: 0;
}

.avoids-list li {
    padding: 0.5rem 0;
}

.provision-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.constitutional-powers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.power-card {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
}

.power-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.farmer-input-box {
    background: #fffaf0;
    border: 2px solid var(--warning);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.farmer-input-box h4 {
    color: var(--warning);
    margin-bottom: 1rem;
}

.contribution-methods {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: var(--background-alt);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.method-card.primary {
    border-color: var(--primary-color);
    background: #ebf8ff;
}

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

.help-note, .note {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

.status-timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

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

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-item.complete .timeline-marker {
    background: var(--success);
    color: white;
}

.timeline-item.current .timeline-marker {
    background: var(--info);
    color: white;
}

.timeline-item.pending .timeline-marker {
    background: var(--background-alt);
    border: 2px solid var(--border);
    color: var(--accent-color);
}

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

.impact-box {
    background: var(--background-alt);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.impact-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    #hero .tagline {
        font-size: 1.2rem;
    }
    
    .bill-header {
        flex-direction: column;
    }
    
    .bill-links {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
}


        ```css
/* Implementation Table Styles */
.implementation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
}

.implementation-table th,
.implementation-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.implementation-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.implementation-table tr:nth-child(even) {
    background: var(--background-alt);
}

.implementation-table tr:hover {
    background: #ebf8ff;
}

/* Precedent Boxes */
.precedent-box {
    background: var(--background-alt);
    border-left: 4px solid var(--info);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.precedent-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
```
