/* Additional styles for auxiliary pages */

.policy-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e7ff;
    text-align: center;
    color: #666;
}

.page-nav {
    display: flex;
    align-items: center;
}

.page-nav a {
    color: #4338ca;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.page-nav a:hover {
    background-color: #e0e7ff;
}

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

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

.page-header h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 36px;
    font-weight: 500;
    color: #4338ca;
    margin-bottom: 16px;
}

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

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

.page-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 500;
    color: #4338ca;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e7ff;
}

.page-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.content-placeholder {
    background: linear-gradient(135deg, #f5f5dc 0%, #ffffff 100%);
    border: 1px solid #e5e5dc;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    color: #666;
}

.content-placeholder p {
    font-size: 18px;
    margin-bottom: 16px;
}

/* About page specific styles */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

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

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

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.photo-item {
    text-align: center;
}

.photo-item .image-placeholder {
    height: 200px;
    margin-bottom: 16px;
}

.photo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.photo-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Mobile responsiveness for pages */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
    }
    
    .page-nav {
        margin-top: 16px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .page-section h2 {
        font-size: 24px;
    }
    
    .content-placeholder {
        padding: 40px 24px;
    }
    
    .content-placeholder p {
        font-size: 16px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header {
        padding: 30px 16px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-section {
        padding: 0 16px;
    }
    
    .page-section h2 {
        font-size: 22px;
    }
    
    .content-placeholder {
        padding: 30px 20px;
    }

    .footer-section:first-child {
        grid-column: 1;
    }
}