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

:root {
    --primary-color: #3E489C;
    --secondary-color: #717AC7;
    --accent-color: #455A64;
    --text-dark: #1b1b1b;
    --text-light: #575757;
    --background-light: #f6f6f6;
    --white: #ffffff;
}

body {
    font-family: 'League Spartan', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo h1 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #B9BCE6;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 24px;
}

.hero-content h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'League Spartan', sans-serif;
}

.btn-donate {
    background: linear-gradient(135deg, #FFB800 0%, #FF8800 100%);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.btn-donate:hover {
    background: linear-gradient(135deg, #FFC700 0%, #FF9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #5560BD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 72, 156, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #4F6672;
}

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.about-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat p {
    font-size: 18px;
    color: var(--text-light);
}

.help {
    background-color: var(--background-light);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.help-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.help-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.help-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.help-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-details {
    margin-top: 32px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-form {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'League Spartan', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background-color: #000;
    color: var(--white);
    text-align: center;
    padding: 32px 0;
}

.footer p {
    margin-bottom: 8px;
    color: #969696;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        gap: 32px;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

.nav-menu a.active {
    color: #B9BCE6;
    font-weight: 600;
}

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3475 100%);
    margin-top: 70px;
}

.legal-help {
    background-color: var(--white);
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.legal-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.legal-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 0;
}

.help-needed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.help-box {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
}

.help-box.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5560BD 100%);
    color: var(--white);
}

.help-box.highlight h3,
.help-box.highlight p {
    color: var(--white);
}

.help-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.help-box ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.help-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.help-box.highlight ul li:before {
    color: var(--white);
}

.process-timeline {
    background-color: var(--background-light);
}

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

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-number {
    min-width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-legal {
    background-color: var(--white);
}

.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'League Spartan', sans-serif;
    transition: border-color 0.3s ease;
    background-color: var(--white);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .help-needed {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        gap: 16px;
    }
    
    .timeline-number {
        min-width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .page-hero {
        min-height: 40vh;
    }
}
