/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #2F381E;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Layout wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 64px 20px 32px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

h2 {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.95rem;
    opacity: 0.75;
    max-width: 520px;
    margin: 0 auto;
}

/* Main content */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.volunteer-section {
    max-width: 720px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.volunteer-section p {
    margin-bottom: 14px;
}

.apply a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.apply a:hover {
    text-decoration-thickness: 2px;
}

.note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    font-size: 0.75rem;
    opacity: 0.75;
    text-align: center;
    padding: 24px 18px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.5;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 4px;
    opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    h1 {
        font-size: 2.3rem;
        letter-spacing: 0.14em;
    }

    h2 {
        font-size: 1.05rem;
    }

    .hero {
        padding-top: 40px;
    }

    .volunteer-section {
        font-size: 0.95rem;
    }
}
