body {
    background-color: #ffffff;
}

.volunteer-header {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.volunteer-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.volunteer-title span {
    color: #10B981;
}

.quote-container {
    margin: 2rem auto;
    max-width: 800px;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #4B5563;
    line-height: 1.6;
    position: relative;
    padding: 0 2rem;
}

.volunteer-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4B5563;
    max-width: 900px;
    margin: 2rem auto 0;
}

.help-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #F9FAFB;
}

.help-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.help-title span {
    color: #10B981;
}

.help-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.volunteer-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-icon.resource {
    background: #ECFDF5;
    color: #059669;
}

.card-icon.mobilize {
    background: #EFF6FF;
    color: #3B82F6;
}

.card-icon.spread {
    background: #F5F3FF;
    color: #7C3AED;
}

.card-icon.events {
    background: #FFF7ED;
    color: #EA580C;
}

.card-icon.teaching {
    background: #F0FDFA;
    color: #0D9488;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.card-description {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    display: flex;
    align-items: center;
    color: #6B7280;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.card-list li::before {
    content: "✓";
    color: #10B981;
    margin-right: 0.75rem;
    font-weight: bold;
}

.remote-volunteering {
    background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 50%, #10B981 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.remote-volunteering::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}

.globe-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    position: relative;
    backdrop-filter: blur(4px);
}

.remote-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.remote-description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
}

.button {
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-button {
    background-color: white;
    color: #4F46E5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
    position: relative;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 1.1rem;
}

.rewards-section {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #fff;
}

.rewards-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.rewards-title span {
    color: #10B981;
}

.rewards-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
}

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

.reward-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.reward-icon {
    width: 56px;
    height: 56px;
    background: #ECFDF5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #10B981;
    font-size: 1.5rem;
}

.reward-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.reward-card p {
    color: #4B5563;
    line-height: 1.6;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #F9FAFB;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.cta-title span {
    color: #10B981;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4B5563;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-button.primary {
    background: linear-gradient(90deg, #10B981 0%, #3B82F6 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
}

.cta-button.primary i {
    transition: transform 0.3s ease;
}

.cta-button.primary:hover i {
    transform: translateX(4px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #10B981;
    color: #10B981;
}

.cta-button.secondary:hover {
    background-color: rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .button-group {
        flex-direction: column;
    }

    .remote-title {
        font-size: 2.5rem;
    }

    .remote-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        text-align: center;
    }
    
    .rewards-title {
        font-size: 2.5rem;
    }

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

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}