/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c8102e;
    --accent-light: #e63946;
    --text-dark: #0f0f0f;
    --text-light: #f8f9fa;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-social {
    padding: 10px 20px;
    font-size: 0.95rem;
    margin: 5px;
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
}

.btn-twitter:hover {
    background: #0d8bd9;
}

.btn-facebook {
    background: #4267B2;
    color: white;
}

.btn-facebook:hover {
    background: #365899;
}

/* ========================================
   Navigation
   ======================================== */
#navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.btn-donate-nav {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-donate-nav:hover {
    background: var(--accent-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* ========================================
   Timeline Styles (Wilbert's Story)
   ======================================== */
.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding-left: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: -38px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--accent-color);
}

.timeline-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.story-highlight {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

.story-highlight blockquote {
    position: relative;
    padding: 40px;
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
}

.story-highlight i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.story-highlight p {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-highlight cite {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: normal;
}

.story-facts {
    margin-top: 60px;
}

.story-facts h3 {
    text-align: center;
    margin-bottom: 40px;
}

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

.fact-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fact-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.fact-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ========================================
   Bill C-44 Section
   ======================================== */
.bill-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bill-intro {
    text-align: center;
    margin-bottom: 50px;
}

.bill-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bill-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.bill-icon {
    text-align: center;
    margin-bottom: 20px;
}

.bill-icon i {
    font-size: 3.5rem;
    color: var(--accent-color);
}

.bill-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.bill-callout {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.bill-callout h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.bill-callout p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ========================================
   James's Story Section
   ======================================== */
.james-content {
    max-width: 900px;
    margin: 0 auto;
}

.james-intro {
    text-align: center;
    margin-bottom: 50px;
}

.james-story-text {
    margin-bottom: 60px;
}

.story-block {
    background: var(--bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.story-block h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.james-callout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.callout-icon {
    margin-bottom: 20px;
}

.callout-icon i {
    font-size: 4rem;
    color: var(--accent-light);
}

.james-callout h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.james-callout p {
    font-size: 1.1rem;
}

/* ========================================
   Other Cases Section
   ======================================== */
.cases-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.case-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.case-location {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.case-card p {
    margin-bottom: 10px;
}

.case-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

.cases-conclusion {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.cases-conclusion h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cases-conclusion p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   Take Action Section
   ======================================== */
.action-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.action-strategy {
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.strategy-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.strategy-content {
    flex: 1;
}

.strategy-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.media-tips {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 5px;
}

.media-tips h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.media-tips ul {
    list-style: disc;
    margin-left: 20px;
}

.media-tips li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

/* ========================================
   Forms
   ======================================== */
.petition-form,
.newsletter-form,
.donate-form {
    margin-top: 30px;
}

.petition-form h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.petition-form input[type="text"],
.petition-form input[type="email"],
.newsletter-form input[type="email"],
.donate-form input[type="text"],
.donate-form input[type="email"],
.donate-form input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.petition-form button,
.newsletter-form button {
    width: 100%;
}

.petition-count {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 5px;
}

.petition-count strong {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    margin-bottom: 0;
}

#petitionMessage,
#newsletterMessage,
#donateMessage {
    margin-top: 15px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

#petitionMessage.success,
#newsletterMessage.success,
#donateMessage.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#petitionMessage.error,
#newsletterMessage.error,
#donateMessage.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ========================================
   Donate Section
   ======================================== */
.section-donate {
    background: var(--bg-light);
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-intro {
    text-align: center;
    margin-bottom: 50px;
}

.donate-list {
    list-style: none;
    margin: 30px 0;
}

.donate-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.donate-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.donate-options {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.donate-options h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.donate-amounts {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 15px 30px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.donate-info {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 5px;
}

.fundraiser-progress {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.fundraiser-progress h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
    transition: width 0.5s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.progress-stats span {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.progress-stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ========================================
   Family Fight Section (James & Marie)
   ======================================== */
.family-content {
    max-width: 900px;
    margin: 0 auto;
}

.family-intro {
    text-align: center;
    margin-bottom: 50px;
}

.family-member-section {
    margin-bottom: 60px;
}

.member-header {
    text-align: center;
    margin-bottom: 30px;
}

.member-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.highlight-block {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 5px solid var(--accent-light);
}

.story-block h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.family-callout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.family-callout h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ========================================
   Media Coverage Section
   ======================================== */
.media-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.media-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-icon {
    text-align: center;
    margin-bottom: 20px;
}

.media-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.media-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.media-links {
    margin-top: 20px;
}

.media-link-item h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.example-list,
.publication-list {
    margin: 15px 0;
    padding-left: 20px;
}

.example-list li,
.publication-list li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.6;
}

.publication-list li {
    list-style: disc;
}

.media-callout {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.media-callout h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.media-callout p {
    margin-bottom: 10px;
}

.media-callout a {
    color: var(--accent-light);
    text-decoration: underline;
}

.media-callout a:hover {
    color: var(--text-light);
}

/* ========================================
   Updated Donate Section (Marie Tribute)
   ======================================== */
.marie-tribute {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid var(--accent-light);
}

.tribute-icon {
    margin-bottom: 20px;
}

.tribute-icon i {
    font-size: 3.5rem;
    color: var(--accent-color);
}

.marie-tribute h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.campaign-mission {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: center;
}

.campaign-mission h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.campaign-mission .donate-list {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

.support-summary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.support-summary h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 500px;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .story-timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -28px;
    }
    
    .strategy-card {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-number {
        margin: 0 auto 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .donate-amounts {
        flex-direction: column;
    }
    
    .amount-btn {
        width: 100%;
    }
    
    .facts-grid,
    .bill-details,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-content,
    .story-block,
    .donate-options,
    .strategy-card {
        padding: 20px;
    }
    
    .bill-callout,
    .james-callout {
        padding: 30px 20px;
    }
}