.fpa-volunteer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.fpa-volunteer-card {
    background: #ffffff;
    border: 1px solid #D2D2D2;
    border-radius: 30px;
    padding: 34px;
    transition: all .3s ease;
}

.fpa-volunteer-card:hover {
    background: #323432;
    transform: translateY(-6px);
}

.fpa-volunteer-card:hover h3,
.fpa-volunteer-card:hover p {
    color: #ffffff;
}
.fpa-volunteer-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #FFC000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.fpa-volunteer-icon .material-symbols-outlined {
    font-size: 34px;
    color: #1F1F1F;
}

.fpa-dark-section .fpa-volunteer-card {
    background: #ffffff;
}

.fpa-dark-section .fpa-volunteer-card h3,
.fpa-dark-section .fpa-volunteer-card p {
    color: #1F1F1F;
}

.fpa-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.fpa-step {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    padding: 30px;
}

.fpa-step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #FFC000;
    color: #1F1F1F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 22px;
}

.fpa-form-section {
    background: #FFEA2C;
}

.fpa-form-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.fpa-form-box {
    background: #ffffff;
    border: 1px solid #D2D2D2;
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(31,31,31,.10);
}

.fpa-field {
    margin-bottom: 20px;
}

.fpa-field label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.fpa-field input,
.fpa-field textarea,
.fpa-field select {
    width: 100%;
    border: 1px solid #D2D2D2;
    border-radius: 16px;
    padding: 15px 16px;
    font-family: "Bierstadt", Arial, sans-serif;
    font-size: 17px;
}

.fpa-field textarea {
    min-height: 150px;
    resize: vertical;
}
.fpa-mission-list {
    margin-top: 45px;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.18);
}

.fpa-mission-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.fpa-mission-row .material-symbols-outlined {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #FFC000;
    color: #1F1F1F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.fpa-mission-row h3,
.fpa-mission-row p {
    color: #ffffff;
}

@media (max-width: 640px) {
    .fpa-mission-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
@media (max-width: 980px) {
    .fpa-volunteer-grid,
    .fpa-steps,
    .fpa-logos,
    .fpa-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fpa-volunteer-card,
    .fpa-step,
    .fpa-form-box {
        padding: 30px;
    }
}