* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #E81B23 0%, #c41e3a 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    flex: 0 0 auto;
}

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

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

nav a:hover, nav a.active {
    color: #fbbf24;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Page Content */
.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E81B23 0%, #c41e3a 50%, #b91c1c 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,15 61,35 85,35 67,50 74,70 50,57 26,70 33,50 15,35 39,35' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: 1;
    transform: rotate(-5deg);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-weight: bold;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    color: #f8fafc;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: 2px solid;
}

.btn:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.btn-primary {
    background: #E81B23;
    color: white;
    border-color: #E81B23;
}

.btn-primary:hover {
    background: #c41e3a;
    border-color: #c41e3a;
    transform: translateY(-2px);
}

.btn-primary-on-red {
    background: white;
    color: #E81B23;
    border-color: white;
    text-shadow: none;
    font-weight: bold;
}

.btn-primary-on-red:hover {
    background: #f8f9fa;
    color: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255,255,255,0.4);
}

.btn-secondary {
    background: #1d4ed8;
    color: white;
    border-color: #1d4ed8;
}

.btn-secondary:hover {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

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

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

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-image {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1d4ed8;
    border: 3px solid #dc2626;
}

/* Issues Section */
.issues {
    background: #f8f9fa;
}

.issues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.issues-grid .feature-card {
    grid-row: 1 / -1;
}

.issues-grid .side-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.issues .feature-card {
    background: linear-gradient(135deg, #E81B23 0%, #c41e3a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.issues .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.issues .feature-card h3 {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.issues .feature-card p {
    color: #f8fafc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.issues .feature-card .btn {
    background: #fbbf24;
    color: #1e3a8a;
    font-weight: bold;
}

.issues .feature-card .btn:hover {
    background: #f59e0b;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Engagement Box */
.engagement-box {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #0ea5e9;
}

.engagement-box h4 {
    color: #0ea5e9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.engagement-box .form-group {
    margin-bottom: 0.75rem;
}

.engagement-box label {
    font-weight: normal;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #475569;
}

.engagement-box input[type="checkbox"] {
    margin-top: 2px;
    width: auto;
}

/* Footer */
footer {
    background: #1d4ed8;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Card hover effects */
.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(232,27,35,0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E81B23, #ffffff, #1e3a8a);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    border-color: rgba(232,27,35,0.3);
}

.gradient-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(232,27,35,0.1);
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E81B23, #ffffff, #1e3a8a);
}

.gradient-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: rgba(232,27,35,0.3);
}

/* Issue cards with hover effects */
.issue-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(232,27,35,0.1);
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E81B23, #ffffff, #1e3a8a);
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    border-color: rgba(232,27,35,0.3);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.footer-section a {
    color: #bfdbfe;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fbbf24;
}

.disclaimer {
    border-top: 1px solid #3b82f6;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #bfdbfe;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    nav {
        display: none;
    }

    .issues-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .issue-card[style*="grid-row: 1 / -1"] {
        grid-row: auto !important;
    }
}