/* Additional styles for inner pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #4B5563;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin: 2.5rem 0 1rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #F59E0B;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: #6B7280;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #F9FAFB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #F59E0B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

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

.value-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* How It Works Steps */
.steps {
    padding: 80px 0;
    background: #fff;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -50px;
    width: 2px;
    background: #E5E7EB;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #F59E0B;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 80px 0;
}

.activity-category {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-header {
    background: #F59E0B;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.activity-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.activity-content {
    padding: 2rem;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.activity-list li:last-child {
    border-bottom: none;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Donation Cards */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.amount-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-card:hover,
.amount-card.active {
    border-color: #F59E0B;
    background: #FFFBEB;
}

.amount-card .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 0.25rem;
}

.amount-card .description {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .step {
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step:not(:last-child)::after {
        left: 25px;
        top: 70px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
    }
}