/* Additional styles for auxiliary pages */

.page-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 200px);
}

.page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.content-section h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.content-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-placeholder {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #64748b;
}

.content-placeholder p {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.about-content-with-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content-with-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-visual svg {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.about-photo {
    display: flex;
    justify-content: center;
}

.about-photo .photo-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-nav {
    display: flex;
    gap: 20px;
}

.page-nav a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.page-nav a:hover {
    color: #0891b2;
    background: #f0f9ff;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .content-placeholder {
        padding: 40px 20px;
    }
    
    .content-placeholder p {
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .page-nav {
        justify-content: center;
    }
}

/* Print styles for pages */
@media print {
    .header,
    .footer,
    .page-nav {
        display: none;
    }
    
    .page-main {
        margin-top: 0;
    }
    
    .page-header {
        background: none;
        padding: 20px 0;
    }
    
    .content-placeholder {
        background: none;
        border: 1px solid #ccc;
    }
}