﻿<style >
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background: #f8fafc;
    min-height: 100vh;
}

.nav-bar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #2563eb;
}

.status-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

h1 {
    font-size: 3.5em;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.4em;
    color: #475569;
    margin-bottom: 24px;
    font-weight: 500;
}

.mission {
    font-size: 1.15em;
    color: #475569;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.section {
    background: white;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #0f172a;
    font-size: 1.8em;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-intro {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.features {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 3px solid #2563eb;
}

.features-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 1.05em;
}

.features ul {
    list-style: none;
}

.features li {
    margin: 16px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1em;
    color: #334155;
}

    .features li:before {
        content: "•";
        position: absolute;
        left: 8px;
        color: #2563eb;
        font-weight: bold;
        font-size: 1.4em;
    }

.features strong {
    color: #0f172a;
    font-weight: 600;
}

.volunteer-roles {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

    .volunteer-roles ul {
        list-style: none;
    }

    .volunteer-roles li {
        margin: 16px 0;
        padding-left: 28px;
        position: relative;
        font-size: 1em;
        color: #334155;
    }

        .volunteer-roles li:before {
            content: "→";
            position: absolute;
            left: 8px;
            color: #2563eb;
            font-weight: bold;
        }

    .volunteer-roles strong {
        color: #0f172a;
        font-weight: 600;
    }

form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95em;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.2s;
    font-family: inherit;
    background: white;
}

    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

    button:hover {
        background: #1d4ed8;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }

    button:active {
        transform: scale(0.98);
    }

.success-message {
    display: none;
    background: #dcfce7;
    color: #166534;
    padding: 16px;
    border-radius: 6px;
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

.optional {
    color: #94a3b8;
    font-size: 0.9em;
    font-weight: normal;
}

.cta-text {
    font-weight: 600;
    color: #0f172a;
    margin: 24px 0 16px 0;
    font-size: 1.05em;
}

footer {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-size: 0.95em;
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 20px;
    }

    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    .subtitle {
        font-size: 1.2em;
    }

    .section {
        padding: 32px 24px;
    }
}

</style >
