/* Additional Styles for Auxiliary Pages */

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-main {
    min-height: 60vh;
    padding: 48px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 300;
    color: #2D3748;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    max-width: 800px;
    margin: 0 auto 48px auto;
    padding: 0 24px;
}

.page-section h2 {
    font-size: 28px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 24px;
}

.page-section p {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Content placeholders for empty policy pages */
.content-placeholder {
    background: #F7FAFC;
    border: 2px dashed #CBD5E0;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    margin-top: 32px;
}

.content-placeholder p {
    color: #4A5568;
    font-style: italic;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-container {
        padding: 0 16px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-section {
        padding: 0 16px;
    }
    
    .page-section h2 {
        font-size: 24px;
    }
    
    .content-placeholder {
        padding: 32px 24px;
    }
}

/* About Us Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content.reverse {
    direction: rtl;
}

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

.about-text h2 {
    margin-bottom: 24px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image svg {
    width: 100%;
    height: 100%;
    max-height: 300px;
    border-radius: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 12px;
}

.value-item p {
    color: #4A5568;
    font-size: 14px;
    line-height: 1.5;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .about-content.reverse {
        direction: ltr;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}