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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(220, 20, 60, 0.2);
    backdrop-filter: blur(10px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    margin-top: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Candle Animation */
.candle-animation {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.candle {
    position: relative;
    animation: gentle-sway 3s ease-in-out infinite;
}

.flame {
    width: 12px;
    height: 20px;
    background: radial-gradient(ellipse at center, #ffd700 0%, #ff6b35 30%, #dc143c 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: flicker 1.5s ease-in-out infinite alternate;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
}

.wick {
    width: 2px;
    height: 8px;
    background: #333;
    margin: 0 auto;
}

.wax {
    width: 20px;
    height: 100px;
    background: linear-gradient(to bottom, #f8f8f8, #e0e0e0);
    border-radius: 0 0 10px 10px;
    position: relative;
}

@keyframes flicker {
    0% { transform: rotate(-1deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.1); }
    100% { transform: rotate(-1deg) scale(1); }
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(1deg); }
}

/* Flag Container */
.flag-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.flag {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.solidarity-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sections */
section {
    padding: 5rem 0;
    background: white;
}

section:nth-child(even) {
    background: #f8f9fa;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

/* Memorial Section */
.memorial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.memorial h2 {
    color: white;
}

.casualty-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.memorial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline */
.timeline-items {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #dc143c, #b91c3c);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    align-items: flex-start;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 16px;
    height: 16px;
    background: #dc143c;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0 0 0 3px #dc143c;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-time {
    flex: 0 0 140px;
    font-weight: 700;
    color: #dc143c;
    text-align: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 25px;
    border: 2px solid #dc143c;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    margin: 0 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc143c;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.timeline-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.demand-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.demand-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.demand-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

/* Action Cards */
.solidarity {
    background: linear-gradient(135deg, #dc143c 0%, #b91c3c 100%);
    color: white;
    position: relative;
}

.solidarity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.solidarity h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

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

.action-card {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #dc143c;
    font-weight: 700;
}

.action-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: inline-block;
    background: #dc143c;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    background: #b91c3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

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

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #dc143c;
}

.news-item h3 {
    color: #dc143c;
    margin-bottom: 1rem;
}

.news-item a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
}

.news-item a:hover {
    color: #dc143c;
}

/* Resources */
.resources {
    background: #f8f9fa;
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.resource-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-top: 4px solid #dc143c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.resource-item h3 {
    color: #1a1a2e;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.resource-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-item a {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.resource-item a:hover {
    background: #dc143c;
    color: white;
    transform: translateY(-2px);
}

.partner-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.partner-links a {
    display: block;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0;
}

.partner-links a:hover {
    background: #dc143c;
    color: white;
    border-color: #dc143c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

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

.social-links a {
    background: #dc143c;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #b91c3c;
}

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

.footer-candles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.small-candle {
    width: 8px;
    height: 40px;
    background: linear-gradient(to bottom, #ffd700 0%, #f8f8f8 20%, #e0e0e0 100%);
    border-radius: 4px;
    position: relative;
    animation: gentle-sway 2s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.3s);
}

.small-candle:nth-child(1) { --delay: 1; }
.small-candle:nth-child(2) { --delay: 2; }
.small-candle:nth-child(3) { --delay: 3; }

.small-candle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: radial-gradient(ellipse, #ffd700, #ff6b35);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1s ease-in-out infinite alternate;
}

.footer-date {
    margin-top: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Email Management Styles */
.email-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.email-tab {
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-tab.active {
    background: #dc143c;
    color: white;
}

.email-tab-content {
    display: none;
    padding: 2rem 0;
}

.email-tab-content.active {
    display: block;
}

.inbox-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.inbox-stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc143c;
    display: block;
}

.template-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.template-buttons button {
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #dc143c;
    color: #dc143c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-buttons button:hover {
    background: #dc143c;
    color: white;
}

.btn-small {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    background: #2e8b57;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 0.5rem;
}

.status {
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.new {
    background: #ff6b35;
    color: white;
}

.status.in_progress {
    background: #ffd700;
    color: #333;
}

.status.resolved {
    background: #2e8b57;
    color: white;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.3rem;
}

.badge.volunteer {
    background: #e3f2fd;
    color: #1976d2;
}

.badge.speaker {
    background: #f3e5f5;
    color: #7b1fa2;
}

.unread {
    background: #fff3cd;
    font-weight: 600;
}

/* Navigation Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .flag-container {
        gap: 1rem;
        flex-direction: column;
    }
    
    .flag {
        height: 45px;
    }
    
    .solidarity-text {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* Mobile Timeline */
    .timeline-items {
        padding: 1rem;
    }
    
    .timeline-items::before {
        left: 30px;
        width: 2px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 3rem;
    }
    
    .timeline-item::before {
        left: 30px;
        top: 2rem;
        width: 12px;
        height: 12px;
    }
    
    .timeline-time {
        flex: none;
        width: auto;
        margin-bottom: 1rem;
        text-align: left;
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .timeline-content {
        margin: 0;
        padding: 2rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .casualty-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .action-grid,
    .demands-grid,
    .news-grid,
    .resource-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Performance Optimizations */
.hero {
    will-change: transform;
}

.candle,
.flame {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .candle,
    .flame,
    .small-candle {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Modern Events Page Styles */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f0c29 0%, #24243e 35%, #313c5a 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-content {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    color: #e0e0e0;
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.events-section {
    padding: 8rem 0;
    background: #fafafa;
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #313c5a 0%, #fafafa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #ff6b6b);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.loading-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #dc143c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modern-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.modern-event-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.modern-event-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 20, 60, 0.2);
}

.modern-event-card.featured {
    border-color: #dc143c;
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
}

.modern-event-card.featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #dc143c, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.event-type-badge {
    font-size: 4rem;
    opacity: 0.9;
    z-index: 2;
    position: relative;
}

.event-date-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-event-card.featured .event-date-overlay {
    top: 4rem;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc143c;
    margin-top: 0.2rem;
    letter-spacing: 1px;
}

.event-content {
    padding: 2.5rem;
}

.event-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

.meta-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.event-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

.modern-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-btn.primary {
    background: linear-gradient(135deg, #dc143c, #ff6b6b);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.3);
}

.modern-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
}

.modern-btn.secondary {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.modern-btn.secondary:hover {
    background: rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

.no-events {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

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

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.event-card.featured {
    border: 2px solid #dc143c;
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
}

.event-card.featured::before {
    content: '✨ Featured Event';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #dc143c, #ff6b6b);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-card.featured .event-content {
    padding-top: 3rem;
}

.event-date {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #dc143c, #ff6b6b);
    color: white;
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
    z-index: 10;
}

.event-card.featured .event-date {
    top: 3.5rem;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.event-content {
    padding: 2.5rem;
    padding-right: 7rem;
}

.event-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.event-details {
    margin-bottom: 2rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.event-description {
    color: #6c757d;
    line-height: 1.7;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.event-organizer {
    font-size: 0.9rem;
    color: #dc143c;
    font-weight: 600;
    margin-top: 1rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-btn.primary {
    background: linear-gradient(135deg, #dc143c, #ff6b6b);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.event-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.event-btn.secondary {
    background: white;
    color: #dc143c;
    border: 2px solid #dc143c;
}

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

.event-guidelines {
    padding: 5rem 0;
    background: #1a1a2e;
    color: white;
}

.event-guidelines h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: white;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.guideline-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.guideline-item:hover {
    transform: translateY(-5px);
}

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

.guideline-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.guideline-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-signup {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
}

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

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.newsletter-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    min-width: 200px;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-row button {
    background: linear-gradient(135deg, #dc143c, #ff6b6b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.form-row button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.form-checkboxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #dc143c;
}

/* Mission Page Styles */
.mission-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25px 25px, rgba(255,255,255,0.1) 1px, transparent 1px), 
                     radial-gradient(circle at 75px 75px, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
}

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

.mission-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-content {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.mission-section {
    margin-bottom: 5rem;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #dc143c, #ff6b6b);
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-section .emoji {
    font-size: 3rem;
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.mission-section ul {
    list-style: none;
    padding: 0;
}

.mission-section li {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.mission-section li::before {
    content: '🔹';
    position: absolute;
    left: 0;
    color: #dc143c;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: #667eea;
}

.contact-item .content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-item .content p {
    color: #6c757d;
    margin: 0;
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.support-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.support-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

.support-ways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-8px);
}

.support-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.support-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-btn {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.3);
    text-decoration: none;
    color: white;
}

/* Ledger Page Styles */
.ledger-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.ledger-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ledger-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.ledger-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.ledger-stat {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ledger-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.ledger-stat .label {
    color: #6c757d;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ledger-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
}

.table-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 2rem;
    text-align: center;
}

.table-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.ledger-table table {
    width: 100%;
    border-collapse: collapse;
}

.ledger-table th {
    background: #f8f9fa;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 1px solid #e9ecef;
}

.ledger-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
    color: #495057;
}

.ledger-table tr:hover {
    background: #f8f9fa;
}

.amount {
    font-weight: 700;
    color: #11998e;
}

.date {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Mobile Responsiveness for All Pages */
@media (max-width: 768px) {
    /* Modern Events Page Mobile */
    .title-main {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .modern-events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-event-card {
        border-radius: 20px;
    }
    
    .event-content {
        padding: 2rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .modern-btn {
        padding: 1.2rem;
    }
    
    /* Legacy Events Page Mobile */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card {
        border-radius: 16px;
    }
    
    .event-content {
        padding: 2rem;
        padding-top: 1.5rem;
        padding-right: 2rem;
    }
    
    .event-date {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .event-card.featured .event-date {
        top: auto;
    }
    
    .event-content h3 {
        font-size: 1.4rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-btn {
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row input,
    .form-row select,
    .form-row button {
        min-width: auto;
        width: 100%;
    }
    
    .form-checkboxes {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guideline-item {
        padding: 2rem;
    }
    
    /* Mission Page Mobile */
    .mission-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-hero p {
        font-size: 1.2rem;
    }
    
    .mission-section {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .mission-section h2 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .mission-section p {
        font-size: 1.1rem;
    }
    
    /* Contact Page Mobile */
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    /* Support Page Mobile */
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    .support-ways {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-card {
        padding: 2rem;
    }
    
    /* Ledger Page Mobile */
    .ledger-hero h1 {
        font-size: 2.5rem;
    }
    
    .ledger-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ledger-table {
        overflow-x: auto;
    }
    
    .ledger-table table {
        min-width: 600px;
    }
    
    .ledger-table th,
    .ledger-table td {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .hero {
        background: white;
        color: black;
        min-height: auto;
    }
    
    .memorial {
        background: white;
        color: black;
    }
    
    .solidarity {
        background: white;
        color: black;
    }
}