/* Additional styles for auxiliary pages */

.page-nav {
    margin-left: auto;
}

.page-nav a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.page-nav a:hover {
    background-color: #f1f5f9;
}

.page-main {
    min-height: 60vh;
    padding: 4rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.content-section h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

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

.empty-section {
    text-align: center;
    padding: 3rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.empty-section em {
    color: #94a3b8;
    font-size: 1.125rem;
}

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

.about-text {
    text-align: left;
}

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

.about-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-nav {
        margin-left: 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-main {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
}