/* Additional styles for auxiliary pages */

/* Page Header */
.page-header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.page-header .logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 16px;
}

.page-header .logo-section:hover {
    opacity: 0.8;
}

.page-header .brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--sumi-charcoal);
    margin-bottom: 4px;
}

.page-header .brand-subtitle {
    font-size: 12px;
    color: var(--persimmon-tan);
    letter-spacing: 1px;
}

/* Page Main Content */
.page-main {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-title h1 {
    font-size: 40px;
    color: var(--sumi-charcoal);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.page-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--persimmon-tan);
    border-radius: 2px;
}

/* About Sections */
.about-section {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: var(--hinoki-beige);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.about-section h2 {
    font-size: 24px;
    color: var(--sumi-charcoal);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Policy Sections */
.policy-section {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    background-color: var(--hinoki-beige);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.policy-content h2 {
    font-size: 20px;
    color: var(--sumi-charcoal);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #DDD;
    text-align: center;
}

.policy-footer p {
    color: #888;
    font-size: 14px;
    margin-bottom: 0;
}

/* About Page Enhancements */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

.about-illustration-center {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.about-text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header .logo-section {
        flex-direction: column;
        gap: 8px;
    }
    
    .page-title h1 {
        font-size: 32px;
    }
    
    .about-section {
        margin: 0 20px 40px;
        padding: 30px 24px;
    }
    
    .policy-section {
        margin: 0 20px;
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .page-header .brand-name {
        font-size: 24px;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .about-section h2 {
        font-size: 20px;
    }
    
    .about-section p {
        font-size: 15px;
    }
    
    .policy-placeholder {
        font-size: 16px;
    }
}