/* Auxiliary Pages Styles */

.main-content {
    min-height: 60vh;
    padding: 80px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 700;
    color: #4A6741;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.content-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    color: #4A6741;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e7e0;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.empty-content {
    text-align: center;
    padding: 80px 20px;
    background: #f8faf7;
    border-radius: 12px;
    margin-top: 40px;
}

.empty-content p {
    font-size: 18px;
    color: #8B7355;
    font-style: italic;
}

/* Header adjustments for auxiliary pages */
.header .brand-name a {
    color: #4A6741;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header .brand-name a:hover {
    color: #3a5233;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .empty-content {
        padding: 60px 16px;
    }

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 20px;
    }
}