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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

.nav-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.donate-btn {
    background: #dc2626;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 90px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.for-congress {
    font-size: 2.5rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    background: #374151;
    color: white;
    border-color: #374151;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-gray {
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Meet Jan Section */
.meet-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.meet-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.meet-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

.meet-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Campaign Banner */
.campaign-banner {
    padding: 60px 0;
    background: #f8fafc;
}

.banner-content {
    text-align: center;
}

.banner-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.banner-content img:hover {
    transform: scale(1.02);
}

/* Issues Section */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.issue-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.issue-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.issue-card p {
    color: #6b7280;
    line-height: 1.6;
}

.ai-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.ai-link:hover {
    text-decoration: underline;
}

.democracy-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.democracy-link:hover {
    text-decoration: underline;
}

.economy-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.economy-link:hover {
    text-decoration: underline;
}

.immigration-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.immigration-link:hover {
    text-decoration: underline;
}

.debt-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.debt-link:hover {
    text-decoration: underline;
}

.healthcare-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.healthcare-link:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: block !important;
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.modal-body h4 {
    color: #374151;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.modal-body h5 {
    color: #2563eb;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.modal-body p {
    color: #4b5563;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.7;
}

.concern-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #2563eb;
}

.policy-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-list li {
    margin-bottom: 1rem;
    color: #374151;
}

.policy-list li strong {
    color: #1f2937;
}

.note {
    font-style: italic;
    color: #6b7280;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: calc(85vh - 100px);
    }
    
    .modal-body h3 {
        font-size: 1.5rem;
    }
    
    .modal-body h4 {
        font-size: 1.2rem;
    }
    
    .budget-conclusion {
        font-size: 1.1rem;
        font-weight: 600;
        color: #dc2626;
        text-align: center;
        margin-top: 2rem;
        padding: 1.5rem;
        background: #fef2f2;
        border-radius: 8px;
        border-left: 4px solid #dc2626;
    }
}

/* Quote Styling */
.quote {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: #374151;
}

/* Warning Signs Styling */
.warning-signs {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-signs h4 {
    color: #92400e;
    text-align: center;
    margin-bottom: 1.5rem;
}

.warning-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fbbf24;
}

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

.warning-item h5 {
    color: #92400e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.warning-item p {
    color: #92400e;
    text-align: left;
    line-height: 1.7;
}

/* Hope Section Styling */
.hope-section {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.hope-section h4 {
    color: #047857;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hope-section p {
    color: #065f46;
    text-align: left;
    line-height: 1.7;
}

/* Budget Priorities Styling */
.budget-priorities {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.budget-priorities h4 {
    color: #dc2626;
    text-align: center;
    margin-bottom: 1.5rem;
}

.budget-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.budget-item h5 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.budget-item p {
    color: #7f1d1d;
    text-align: left;
    line-height: 1.7;
}

/* Economic Modal Styling */
.economic-impacts {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.economic-impacts h4 {
    color: #92400e;
    text-align: center;
    margin-bottom: 1.5rem;
}

.impact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.impact-item h5 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.impact-item p {
    color: #7c2d12;
    text-align: left;
    line-height: 1.7;
}

.economic-evidence {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.evidence-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.evidence-item h5 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.evidence-item p {
    color: #7f1d1d;
    text-align: left;
    line-height: 1.7;
}

.solution-section {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.solution-section h4 {
    color: #047857;
    margin-bottom: 1.5rem;
}

.solution-section p {
    color: #065f46;
    text-align: left;
    line-height: 1.7;
}

.action-plan {
    margin-top: 2rem;
}

.plan-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.plan-item h5 {
    color: #047857;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-item p {
    color: #065f46;
    margin-bottom: 0.8rem;
    text-align: left;
    line-height: 1.7;
}

/* Immigration Modal Styling */
.immigration-facts {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.fact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.fact-item:last-child {
    margin-bottom: 0;
}

.fact-item h5 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.fact-item p {
    color: #7c2d12;
    text-align: left;
    line-height: 1.7;
}

.position-statement {
    background: #e0f2fe;
    border: 2px solid #0284c7;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.position-statement h4 {
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.position-statement p {
    color: #0c4a6e;
    text-align: left;
    line-height: 1.7;
}

.belief-system {
    margin-top: 2rem;
}

.belief-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #0284c7;
}

.belief-item:last-child {
    margin-bottom: 0;
}

.belief-item h5 {
    color: #0c4a6e;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.belief-item p {
    color: #0f172a;
    text-align: left;
    line-height: 1.7;
}

.call-to-action {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.call-to-action h4 {
    color: #047857;
    margin-bottom: 1rem;
}

/* National Debt Modal Styling */
.debt-facts {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.debt-facts h4 {
    color: #92400e;
    text-align: center;
    margin-bottom: 1.5rem;
}

.fact-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.fact-highlight p {
    color: #7c2d12;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.7;
}

.fact-highlight a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.fact-highlight a:hover {
    text-decoration: underline;
}

.debt-consequences {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.debt-consequences h4 {
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.debt-consequences > p {
    color: #7f1d1d;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.7;
}

.consequence-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.consequence-item:last-child {
    margin-bottom: 0;
}

.consequence-item h5 {
    color: #dc2626;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.consequence-item p {
    color: #7f1d1d;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.consequence-item ul {
    margin-left: 1.5rem;
    color: #7f1d1d;
}

.consequence-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.consequence-item ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.consequence-item em {
    font-style: italic;
    color: #991b1b;
}

.urgency-section {
    background: #fff7ed;
    border: 2px solid #ea580c;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.urgency-section h4 {
    color: #c2410c;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Healthcare Modal Styling */
.healthcare-impacts {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.healthcare-impacts ul {
    margin: 0;
    padding-left: 1.5rem;
}

.healthcare-impacts li {
    color: #7c2d12;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.real-story {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.real-story h4 {
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.real-story p {
    color: #7f1d1d;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.medical-debt-crisis {
    background: #fff1f2;
    border: 2px solid #f43f5e;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.medical-debt-crisis h4 {
    color: #be123c;
    margin-bottom: 1.5rem;
}

.medical-debt-crisis p {
    color: #881337;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.single-payer-solution {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.single-payer-solution h4,
.single-payer-solution h5 {
    color: #047857;
    margin-bottom: 1.5rem;
}

.single-payer-solution p {
    color: #065f46;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.advantage-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.advantage-item h6 {
    color: #047857;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: #065f46;
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

.immediate-actions {
    background: #eff6ff;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.immediate-actions h4 {
    color: #1d4ed8;
    margin-bottom: 1.5rem;
}

.immediate-actions > p {
    color: #1e40af;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.action-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.action-item:last-child {
    margin-bottom: 0;
}

.action-item h5 {
    color: #1d4ed8;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.action-item p {
    color: #1e40af;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.action-item p:last-child {
    margin-bottom: 0;
}

.vision-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.vision-section h4 {
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.vision-section p {
    color: #0c4a6e;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Form Styling */
.campaign-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-group label input[type="checkbox"] {
    display: inline;
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    color: #047857;
    margin-bottom: 1rem;
}

.form-success p {
    color: #065f46;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-loading {
    text-align: center;
    padding: 2rem;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Get Involved Section */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.involvement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.involvement-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.involvement-card .btn,
.involvement-card button {
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    color: white;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-subtitle {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .donate-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }
    
    .for-congress {
        font-size: 2rem;
        color: #2563eb;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .meet-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-subtitle {
        font-size: 0.75rem;
    }
    
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .for-congress {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .issue-card,
    .involvement-card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
}