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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ensure main content takes up available space */
main {
    flex: 1;
    min-height: 0;
}

/* WebComponent compatibility */
header-component,
footer-component {
    display: block;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    color: #27ae60;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #ecf0f1;
    text-decoration: none;
}

.nav-links a.active {
    background-color: #27ae60;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #27ae60 0%, #2980b9 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

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

.btn.primary:hover {
    background-color: #c0392b;
    text-decoration: none;
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background-color: white;
    color: #27ae60;
    text-decoration: none;
}

/* Page Sections */
.page-header {
    background-color: #34495e;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content {
    padding: 3rem 0;
    background-color: white;
}

/* Features Grid */
.features {
    background-color: white;
    padding: 4rem 0;
}

.features h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.feature h4 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Call to Action Section */
.call-to-action {
    background-color: #ecf0f1;
    padding: 4rem 0;
    text-align: center;
}

.call-to-action h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.call-to-action p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Fix secondary button contrast on light backgrounds */
.call-to-action .btn.secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.call-to-action .btn.secondary:hover {
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
}

/* Fix secondary button contrast on highlight sections */
.mutual-aid-highlight .btn.secondary,
.civic-engagement-highlight .btn.secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.mutual-aid-highlight .btn.secondary:hover,
.civic-engagement-highlight .btn.secondary:hover {
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
}

/* Mutual Aid and Civic Engagement Highlight Sections */
.mutual-aid-highlight,
.civic-engagement-highlight {
    padding: 4rem 0;
    background-color: white;
}

.mutual-aid-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
}

.civic-engagement-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
}

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

.civic-engagement-highlight .highlight-content {
    grid-template-columns: 1fr 2fr;
}

.highlight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mutual-aid-highlight .highlight-text h3 {
    color: #27ae60;
}

.civic-engagement-highlight .highlight-text h3 {
    color: #3498db;
}

.highlight-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlight-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.civic-engagement-highlight .stat-item {
    border-left-color: #3498db;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Community Values Section */
.community-values {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.community-values h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #e74c3c;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.value:nth-child(2) {
    border-top-color: #3498db;
}

.value:nth-child(3) {
    border-top-color: #f39c12;
}

.value:nth-child(4) {
    border-top-color: #9b59b6;
}

.value h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* About Page Layouts */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-sidebar {
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 8px;
}

.sidebar-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.sidebar-box h4 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

.sidebar-box ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-box li:last-child {
    border-bottom: none;
}

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

.approach-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #e74c3c;
}

.approach-item h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.community-focus,
.get-involved,
.about-approach {
    margin: 3rem 0;
}

/* Events Page Styles */
.events-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-type {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 6px solid #27ae60;
}

.event-type h4 {
    color: #27ae60;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.event-type p:first-of-type {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.method {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.method h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Initiatives Page Styles */
.initiatives-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.initiative {
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.initiative h3 {
    background-color: #27ae60;
    color: white;
    padding: 1.5rem 2rem;
    margin-bottom: 0;
}

.initiative-description {
    padding: 2rem 2rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
}

.initiative-details {
    padding: 0 2rem 2rem;
}

.initiative-details h4 {
    color: #27ae60;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.involvement-option {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid #e74c3c;
}

.involvement-option h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.contact-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-card h4 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

.involvement-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.involvement-level {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.involvement-level h4 {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

.area-group {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.area-group h4 {
    color: #34495e;
    margin-bottom: 1rem;
}

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

.resource {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.resource h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Resources Page Styles */
.resources-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.resource-sections {
    margin: 3rem 0;
}

.resource-section {
    margin-bottom: 4rem;
}

.resource-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #27ae60;
}

.resource-section.emergency h3 {
    border-bottom-color: #e74c3c;
}

.resource-section.training h3 {
    border-bottom-color: #3498db;
}

.resource-section.mental-health h3 {
    border-bottom-color: #9b59b6;
}

.resource-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin-bottom: 1.5rem;
}

.resource-card.urgent {
    border-left-color: #e74c3c;
    background-color: #fdf2f2;
}

.resource-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card.urgent h4 {
    color: #e74c3c;
}

.resource-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.resource-card a {
    color: #3498db;
    font-weight: 500;
}

.resource-card a:hover {
    color: #2980b9;
}

.resource-footer {
    background-color: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.resource-footer h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    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: #3498db;
}

.form-note {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
}

.contact-for-events,
.contact-initiatives {
    text-align: center;
    margin: 3rem 0;
}

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

footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 900px) {
    .feature-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid,
    .feature-grid,
    .contact-grid,
    .involvement-levels,
    .involvement-options,
    .info-methods,
    .neighborhood-areas,
    .resources-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .highlight-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .feature,
    .event-type,
    .contact-card,
    .involvement-option,
    .involvement-level,
    .value {
        padding: 1.5rem;
    }
    
    .highlight-text h3 {
        font-size: 1.8rem;
    }
    
    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
}

/* Mutual Aid Specific Styles */
.mutual-aid-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mutual-aid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.mutual-aid-section {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 6px solid #27ae60;
}

.mutual-aid-section h3 {
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.mutual-aid-section h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.request-categories ul,
.offer-ways ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.request-categories li,
.offer-ways li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.request-process ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.request-process li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.monthly-event {
    background-color: #e8f5e8;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.monthly-event h4 {
    color: #27ae60;
    margin-top: 0;
}

.mutual-aid-guidelines {
    margin: 4rem 0;
}

.mutual-aid-guidelines h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.guideline {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #3498db;
    text-align: center;
}

.guideline h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.mutual-aid-success {
    background-color: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.mutual-aid-success h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
}

.stat h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Mutual Aid Form Styles */
.mutual-aid-form {
    max-width: 800px;
    margin: 2rem auto;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 6px solid #27ae60;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #27ae60;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.form-section-note {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-guidelines {
    background-color: #e8f5e8;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.form-guidelines h4 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.form-guidelines ul {
    margin: 0;
    padding-left: 1.5rem;
}

.form-guidelines li {
    margin-bottom: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.form-note {
    margin-top: 1rem;
    color: #7f8c8d;
    font-style: italic;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.request-intro,
.after-submission {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.privacy-notice {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
}

.privacy-notice h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.emergency-note {
    background-color: #fdf2f2;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
    margin: 2rem 0;
}

.emergency-note h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Success and Error Page Styles */
.success-header {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.error-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

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

.success-icon,
.error-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.success-icon svg {
    color: #27ae60;
}

.error-icon svg {
    color: #e74c3c;
}

.success-message,
.error-message {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.request-id-box,
.error-detail-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.request-id {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    background-color: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0.5rem 0;
}

.next-steps,
.what-to-do {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
}

.next-steps h4,
.what-to-do h4 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.next-steps-list {
    list-style: none;
    padding: 0;
}

.next-steps-list li {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.next-steps-list li strong {
    color: #27ae60;
}

.important-info,
.urgent-help {
    margin: 3rem 0;
}

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

.info-item,
.option {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: left;
}

.info-item h5,
.option h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.community-message {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid #9b59b6;
}

.community-message blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.community-message cite {
    display: block;
    margin-top: 1rem;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.contact-methods {
    list-style: none;
    padding: 0;
}

.contact-methods li {
    background-color: #f8f9fa;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.troubleshooting-list {
    margin: 2rem 0;
}

.issue {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
}

.issue h5 {
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.support-message,
.feedback-section,
.additional-resources,
.alternative-ways {
    margin: 3rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Mutual Aid */
@media (max-width: 768px) {
    .mutual-aid-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mutual-aid-section {
        padding: 2rem;
    }
    
    .guidelines-grid,
    .impact-stats,
    .info-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .mutual-aid-form {
        padding: 2rem;
        margin: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .mutual-aid-section {
        padding: 1.5rem;
    }
    
    .mutual-aid-form {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}