/* Auxiliary Pages Styles */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 48px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e2e8f0;
}

.page-header h1 {
    color: #1a2332;
    font-size: 2.5rem;
    margin: 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 48px;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(26, 35, 50, 0.08);
    border: 1px solid #e2e8f0;
}

.content-section h2 {
    color: #1a2332;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.content-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-section:last-of-type {
    margin-bottom: 0;
}

.empty-content {
    text-align: center;
    padding: 80px 32px;
    color: #94a3b8;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.empty-content p {
    font-size: 1.1rem;
    margin: 0;
    color: #64748b;
}

/* About Us Page Specific Styles */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 32px 0;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(26, 35, 50, 0.1);
}

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

.value-item {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-icon {
    margin-bottom: 16px;
}

.value-item h3 {
    color: #1a2332;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.value-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.feature-highlight {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(26, 35, 50, 0.08);
    border: 1px solid #e2e8f0;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-highlight h3 {
    color: #1a2332;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.feature-highlight p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b5a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .main-content {
        padding: 32px 0;
    }
    
    .page-header {
        margin-bottom: 48px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        margin: 0 auto 32px;
        padding: 32px 24px;
    }
    
    .empty-content {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 24px 20px;
    }
    
    .empty-content {
        padding: 48px 20px;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-with-image.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .support-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .support-stats {
        grid-template-columns: 1fr;
    }
}