/* Additional styles for auxiliary pages */

/* Legal sections styling */
.legal-sections {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(107, 122, 60, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.legal-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 1px;
    background: #6b7a3c;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: 707070;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.contact-details {
    background: #f8f6f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f6f0 0%, #f2f0e8 100%);
    text-align: center;
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

/* About page styles */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.content-block.centered {
    text-align: center;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #6b7a3c;
}

.block-content {
    max-width: 800px;
}

.block-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: 707070;
}

.block-content p:last-child {
    margin-bottom: 0;
}

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

.block-content-with-image.reverse {
    grid-template-columns: 300px 1fr;
}

.block-text {
    max-width: none;
}

.block-image {
    display: flex;
    justify-content: center;
}

.about-illustration {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 300px;
    height: 200px;
    object-fit: cover;
}

/* Legal pages styles */
.legal-content {
    padding: 80px 0;
    background: #fff;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-text {
    font-size: 1.05rem;
    color: #6b7a3c;
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f6f0;
    border-radius: 12px;
    border: 2px dashed #6b7a3c;
}

/* Header brand link styles */
.header-brand a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-brand a:hover {
    color: #6b7a3c;
}

/* Responsive styles for auxiliary pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-content,
    .legal-content {
        padding: 60px 0;
    }
    
    .block-title {
        font-size: 1.4rem;
    }
    
    .block-content p,
    .placeholder-text {
        font-size: 1rem;
    }
    
    .block-content-with-image,
    .block-content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-illustration {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .placeholder-text {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .block-title {
        font-size: 1.3rem;
    }
    
    .placeholder-text {
        padding: 2rem 1rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        font-size: 0.9rem;
    }
}