/* Auxiliary pages specific styles */

.page-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 400;
}

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

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

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1e3a8a;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C8860D 0%, #F59E0B 100%);
    border-radius: 2px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(200, 134, 13, 0.2);
}

.content-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(200, 134, 13, 0.2);
    padding-bottom: 12px;
}

.content-section h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 16px;
    margin-top: 24px;
}

.content-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.business-content {
    display: grid;
    gap: 32px;
    margin-top: 32px;
}

.business-item {
    padding: 24px;
    background: rgba(254, 247, 231, 0.5);
    border-radius: 8px;
    border-left: 4px solid #C8860D;
}

.business-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.business-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.info-item {
    padding: 20px;
    background: rgba(254, 247, 231, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(200, 134, 13, 0.2);
}

.info-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #C8860D;
}

.info-item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #374151;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #475569;
}

.content-section a {
    color: #C8860D;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 134, 13, 0.3);
    transition: all 0.2s ease;
}

.content-section a:hover {
    color: #1e3a8a;
    border-bottom-color: #1e3a8a;
}

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

.about-text h2 {
    margin-top: 0;
}

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

.illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.business-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.business-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.initiative-item {
    text-align: center;
    padding: 24px;
    background: rgba(254, 247, 231, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(200, 134, 13, 0.2);
}

.initiative-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: block;
}

.initiative-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
}

.initiative-item p {
    margin-bottom: 0;
    font-size: 14px;
    text-align: left;
}

.empty-content {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    font-style: italic;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .content-section {
        padding: 30px 20px;
        margin: 0 auto 30px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-image {
        order: -1;
    }
    
    .company-info {
        grid-template-columns: 1fr;
    }
    
    .initiatives {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .content-section {
        padding: 20px 16px;
    }
    
    .content-section h2 {
        font-size: 22px;
    }
}