/* Additional styles for auxiliary pages */

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

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.content-with-svg {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.content-svg {
    flex-shrink: 0;
}

.content-text {
    flex: 1;
}

.content-image {
    height: 220px;
}

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E0 100%);
    border-radius: 12px;
}

.page-header h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5em;
    font-weight: 500;
    color: #2D3A20;
    line-height: 1.2;
}

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

.content-block {
    background-color: #FAFAF8;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(74, 93, 58, 0.1);
}

.content-block h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8em;
    font-weight: 500;
    color: #2D3A20;
    margin-bottom: 20px;
    border-bottom: 2px solid #D44638;
    padding-bottom: 10px;
}

.content-block p {
    color: #2D3A20;
    line-height: 1.8;
    font-size: 1.1em;
}

.content-placeholder {
    background-color: #FAFAF8;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 93, 58, 0.1);
    border: 2px dashed #4A5D3A;
}

.content-placeholder p {
    color: #4A5D3A;
    font-size: 1.2em;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-links a {
    color: #FAFAF8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D44638;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }
    
    .content-block,
    .content-placeholder {
        padding: 30px 20px;
    }
    
    .content-block h2 {
        font-size: 1.5em;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .content-with-svg {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-nav {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8em;
    }
    
    .page-header {
        padding: 30px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}