/* Auxiliary Pages Styles */
.page-header {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

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

.content-block {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.content-block h3 {
    font-family: 'Noto Serif JP', serif;
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-block p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-block ul {
    text-align: left;
    display: inline-block;
}

.content-block .content-image-placeholder {
    margin: 1.5rem 0;
}

.empty-content {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: #666;
    border: 2px dashed #ddd;
}

/* Mobile Responsive for Auxiliary Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .empty-content {
        padding: 3rem 1.5rem;
    }
}