/* Additional styles for auxiliary pages */

/* Center alignment for About page */
.center-align {
    text-align: center;
}

.center-align h2,
.center-align h3,
.center-align p {
    text-align: center;
}

.center-align .values-grid {
    text-align: center;
}

/* Section illustrations */
.section-illustration {
    margin: 24px auto;
    display: block;
}

.mission-visual,
.approach-visual,
.values-intro {
    margin: 32px 0;
}

/* Photo placeholders for About page */
.mission-photo,
.approach-photo {
    height: 300px;
    margin: 32px auto;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.mission-photo img,
.approach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Value items with icons */
.value-item {
    position: relative;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8F8F8;
    border-radius: 50%;
}

/* Policy pages content styling */
.content-block h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 32px 0 16px 0;
    color: #1A1A1A;
}

.content-block h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 24px 0 12px 0;
    color: #333;
}

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

.content-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-header {
    padding: 120px 0 80px;
    background-color: #FAFAFA;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1A1A1A;
    letter-spacing: 0.02em;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-section {
    padding: 80px 0;
}

.page-section.alt {
    background-color: #FAFAFA;
}

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

.content-block h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #1A1A1A;
    letter-spacing: 0.02em;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.content-block a {
    color: #2C2C2C;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.content-block a:hover {
    color: #1A1A1A;
}

/* Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    padding: 32px 24px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    text-align: center;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 48px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .page-section {
        padding: 48px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}