/* Auxiliary Pages Styles */

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

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

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

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: left;
}

.content-block {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-block h3:first-child {
    margin-top: 0;
}

.content-block p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.empty-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 2px dashed #d1d5db;
}

.empty-content p {
    color: #9ca3af;
    font-style: italic;
}

/* About Page Specific Styles */
.about-content-with-visual {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
}

.about-content-with-visual.reverse {
    grid-template-columns: 300px 1fr;
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.875rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .about-content-with-visual,
    .about-content-with-visual.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid,
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}