/* Auxiliary Pages Styles */

.page-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: var(--accent-color);
}

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

.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.content-block {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.content-block h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

/* About page specific styles */
.about-hero-image {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-image .image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    padding: 20px;
}

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

.content-with-visual {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.content-with-visual:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    text-align: left;
}

.content-visual {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-visual .image-placeholder {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    padding: 15px;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .content-with-visual {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .content-text {
        text-align: center;
    }
    
    .content-visual {
        flex: none;
    }
    
    .about-hero-image .image-placeholder {
        height: 200px;
        font-size: 1rem;
    }
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}