/* Charity Types Page - Modern, Full-Width Design */

/* Charity Wrapper - Full Width */
.charity-wrapper {
    width: 100%;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Hero Section */
.charity-hero {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.charity-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.charity-hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.charity-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.charity-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.charity-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.charity-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.charity-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Main Content */
.charity-main-content {
    width: 100%;
    padding: 0;
    max-width: none;
    box-sizing: border-box;
}

/* Charity Sections */
.charity-section {
    padding: 4rem 2rem;
    background: white;
    margin-bottom: 0;
}



.charity-section-alt {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.charity-section-cta {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
}

/* Section Content */
.charity-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.charity-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.charity-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.charity-section-header h2 i {
    color: #00b590;
}

.charity-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.charity-section-cta .charity-section-header h2,
.charity-section-cta .charity-section-subtitle {
    color: white;
}

.charity-section-cta .charity-section-header h2 i {
    color: white;
}

/* Content Cards */
.charity-content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.charity-content-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.charity-intro {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Subsections */
.charity-subsection {
    margin-bottom: 2.5rem;
}

.charity-subsection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.charity-subsection h3 i {
    color: #00b590;
}

.charity-subsection p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Charity Items */
.charity-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.charity-item {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.charity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-color: #00b590;
}

.charity-item-header {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.toggle-icon {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00b590;
    min-width: 20px;
    text-align: center;
}

.charity-item-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.charity-item-content {
    padding: 0 1.25rem 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    display: none;
}

.charity-item-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.charity-item-content p:last-child {
    margin-bottom: 0;
}

.charity-item-content strong {
    color: #2d3748;
    font-weight: 600;
}

/* Blockquotes */
.charity-item-content blockquote {
    font-style: italic;
    color: #4a5568;
    border-left: 3px solid #00b590;
    padding-left: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.charity-item-content blockquote footer {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: normal;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.charity-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Buttons */
.charity-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
    min-width: 140px;
}

.charity-btn-primary {
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
}

.charity-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.4);
    color: white;
}

.charity-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.charity-btn-outline:hover {
    background: white;
    color: #00b590;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .charity-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .charity-wrapper {
        padding: 0;
    }
    
    .charity-hero {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .charity-hero-title {
        font-size: 2.5rem;
    }
    
    .charity-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .charity-section {
        padding: 3rem 1rem;
    }
    
    .charity-section-header h2 {
        font-size: 2rem;
    }
    
    .charity-hero-actions {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .charity-content-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .charity-hero {
        padding: 2rem 0.5rem;
    }
    
    .charity-hero-title {
        font-size: 2rem;
    }
    
    .charity-section {
        padding: 2rem 0.5rem;
    }
    
    .charity-section-header h2 {
        font-size: 1.75rem;
    }
    
    .charity-content-card {
        padding: 1rem;
    }
    
    .charity-item-header {
        padding: 1rem;
    }
    
    .charity-item-content {
        padding: 0 1rem 1rem;
    }
}
