/* Auxiliary Pages Styles */

.aux-main {
    min-height: 60vh;
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid #e5e7eb;
}

.page-header h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 0.5rem;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #DC2626;
    margin-bottom: 1rem;
}

.content-section p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.empty-content {
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #d1d5db;
}

.empty-content p {
    color: #6b7280;
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive Design for Aux Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .aux-main {
        padding: 1rem 0;
    }
    
    .page-header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .content-section {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .empty-content {
        padding: 2rem 1rem;
    }
}

/* About Page Specific Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-content-grid.reverse {
    direction: rtl;
}

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

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.photo-placeholder {
    height: 250px;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.services-overview {
    text-align: center;
    margin: 3rem 0;
}

.services-overview h2 {
    margin-bottom: 2rem;
}

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

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-card svg {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #4F46E5;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.sustainability-section {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.sustainability-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sustainability-visual {
    display: flex;
    justify-content: center;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero,
    .about-content-grid,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-grid.reverse {
        direction: ltr;
    }
    
    .about-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-section {
        padding: 2rem 1rem;
    }
}