/* Additional styles for auxiliary pages */
.page-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.page-header {
    background: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.page-header p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.content-block h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #FF6B9D;
    padding-bottom: 0.5rem;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.empty-content {
    text-align: center;
    padding: 60px 40px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 12px;
    color: #999;
    font-style: italic;
}

.empty-content p {
    color: #999;
    font-size: 1.2rem;
    margin: 0;
}

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

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

.image-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.svg-illustration svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-bottom: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .empty-content {
        padding: 40px 20px;
    }
    
    .empty-content p {
        font-size: 1.1rem;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .text-content {
        text-align: center;
    }
    
    .image-placeholder img {
        height: 200px;
    }
}