/* Additional styles for auxiliary pages */

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

.about-hero-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 20px;
}

.about-content-section {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content-section:nth-child(even) {
    grid-template-columns: 200px 1fr;
}

.about-text-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 20px;
}

.about-text-content p {
    font-size: 16px;
.about-image {
    color: #5A4A3A;
    margin-bottom: 16px;
.about-illustration {
    overflow: hidden;
}

.about-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #E8E8E8;
    justify-content: center;
    align-items: center;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    background-color: #FAF9F7;
    padding: 40px;
    border-radius: 12px;
}

.about-mission-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 20px;
}

.about-mission-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5A4A3A;
}

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

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2C1810;
    text-align: center;
    margin-bottom: 60px;
}

.page-section {
    margin-bottom: 40px;
}

.page-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 20px;
}

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

.empty-content {
    text-align: center;
    padding: 80px 20px;
    background-color: #FAF9F7;
    border-radius: 12px;
    margin: 40px 0;
}

.empty-message {
    font-size: 18px;
    color: #888;
    font-style: italic;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-content-section,
    .about-content-section:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-mission {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .page-title {
        font-size: 28px;
    }

    .page-section h2 {
        font-size: 20px;
    }

    .empty-content {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .about-mission {
        padding: 20px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .page-section h2 {
        font-size: 18px;
    }

    .empty-content {
        padding: 40px 16px;
    }

    .empty-message {
        font-size: 16px;
    }
}