/* Additional styles for auxiliary pages */

.page-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 12px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin: 0;
}

.content-block {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff6b6b;
}

.content-block p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.content-block .placeholder-text {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    font-style: italic;
}

/* About page specific styles */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content-grid:nth-child(even) {
    direction: rtl;
}

.about-content-grid:nth-child(even) > * {
    direction: ltr;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

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

.about-values {
    text-align: center;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.75rem;
    color: #1e293b;
}

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

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block .placeholder-text {
        padding: 2rem 1rem;
        font-size: 1rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-grid:nth-child(even) {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}