/* Get Involved Page Specific Styles */

/* Hero Section */
.involved-hero {
    background: var(--background-white);
    padding: 120px 0;
}

.involved-hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-headline {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-subline {
    font-size: 22px;
    font-weight: normal;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-cta {
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 600;
}

.hero-image {
    flex-shrink: 0;
    width: 600px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .involved-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .hero-headline {
        font-size: 56px;
        max-width: none;
    }
    
    .hero-image {
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .involved-hero {
        padding: 80px 0;
    }
    
    .hero-headline {
        font-size: 42px;
    }
    
    .hero-subline {
        font-size: 18px;
    }
    
    .hero-image {
        height: 300px;
    }
}

/* Ways Section */
.ways-section {
    background: var(--background-light);
    padding: 100px 0;
}

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

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

.ways-section .section-header p {
    font-size: 22px;
    color: var(--text-secondary);
}

.ways-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.way-card {
    background: var(--background-white);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    width: 360px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.way-card:hover {
    transform: translateY(-4px);
}

.way-icon {
    width: 56px;
    height: 56px;
    color: var(--primary-green);
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.way-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.way-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .ways-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .way-card {
        width: 100%;
        max-width: 400px;
    }
    
    .ways-section .section-header h2 {
        font-size: 36px;
    }
}

/* Volunteer Section */
.volunteer-section {
    background: var(--background-white);
    padding: 100px 0;
}

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

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

.volunteer-section .section-header p {
    font-size: 22px;
    color: var(--text-secondary);
}

.volunteer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.volunteer-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--background-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    transition: transform 0.3s ease;
}

.volunteer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.volunteer-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volunteer-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.volunteer-content {
    flex: 1;
}

.volunteer-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.volunteer-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .volunteer-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .volunteer-section .section-header h2 {
        font-size: 36px;
    }
}

/* Support Section */
.support-section {
    background: var(--background-light);
    padding: 100px 0;
}

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

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

.support-section .section-header p {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.support-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    flex: 1;
    background: var(--background-white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
}

.support-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.support-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.support-amount {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green-dark);
}

@media (max-width: 768px) {
    .support-grid {
        flex-direction: column;
    }
    
    .support-section .section-header h2 {
        font-size: 36px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: var(--background-white);
    padding: 50px 0 100px 0;
}

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

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

.testimonial-section .section-header p {
    font-size: 22px;
    color: var(--text-secondary);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 48px;
    border-radius: 20px;
}

.testimonial-green {
    background: var(--primary-green-light);
}

.testimonial-yellow {
    background: var(--accent-yellow-light);
}

.testimonial-card blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: normal;
    margin: 0 0 20px 0;
}

.testimonial-card cite {
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
}

.testimonial-green cite {
    color: var(--primary-green-dark);
}

.testimonial-yellow cite {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
    }
    
    .testimonial-section .section-header h2 {
        font-size: 36px;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: var(--primary-green);
    padding: 120px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}

.final-cta-section p {
    font-size: 22px;
    line-height: 1.5;
    color: white;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white !important;
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

.final-cta-section .btn-secondary {
    background: white !important;
    color: var(--primary-green) !important;
    border: none !important;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 600;
}

.final-cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .final-cta-section h2 {
        font-size: 36px;
    }
    
    .final-cta-section p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
}

/* General section header styles */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.section-header p {
    font-size: 22px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 18px;
    }
}