/* Additional styles for auxiliary pages */

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link:hover {
    text-decoration: none;
}

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

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

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

.page-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    margin: 0;
}

.content-sections {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.content-section p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.content-list {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.content-list li {
    margin-bottom: 0.5rem;
}

.content-list li::marker {
    color: #00d4aa;
}

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

.empty-content p {
    margin: 0;
    font-size: 1.1rem;
}

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

.about-content-with-svg {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.about-text {
    flex: 1;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .page-main {
        padding: 1rem 0 2rem 0;
    }
    
    .about-content-with-image,
    .about-content-with-svg {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .empty-content {
        padding: 2rem;
    }
}