/* Auxiliary Pages Styles */

.main-content {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

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

.page-header h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.02em;
}

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

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.about-section p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 2;
}

.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.about-content-with-image.reverse {
    direction: rtl;
}

.about-content-with-image.reverse > * {
    direction: ltr;
}

.about-text {
    text-align: left;
}

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

.about-image .image-placeholder {
    width: 100%;
    height: 250px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.feature-with-icon {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.feature-svg {
    width: 80px;
    height: 80px;
    justify-self: center;
}

.feature-svg svg {
    width: 100%;
    height: 100%;
}

.feature-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.feature-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.policy-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 2;
    text-align: center;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
    text-align: left;
}

.policy-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.policy-section p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 16px;
    text-align: justify;
}

.contact-details {
    background: rgba(30, 58, 138, 0.05);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #1e3a8a;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 8px;
    text-align: left;
}

.contact-details strong {
    color: #1e3a8a;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 30px 20px;
        margin: 0 16px;
    }
    
    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content-with-image.reverse {
        direction: ltr;
    }
    
    .feature-with-icon {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .feature-text {
        text-align: center;
    }
}