/* Auxiliary Pages Styles */

.centered {
    text-align: center;
}

.section-illustration {
    margin: 2rem auto;
    display: block;
}

.mission-visual,
.values-visual,
.philosophy-visual,
.impact-visual {
    margin: 2rem 0;
}

.story-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    align-items: center;
    margin: 2rem 0;
}

.story-continuation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0 0;
}

.story-image,
.team-image {
    display: flex;
    justify-content: center;
}

.story-image .image-placeholder,
.team-image .image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 200px;
}

.story-image-photo,
.team-image-photo {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.page-nav {
    margin-left: auto;
}

.page-nav a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.page-nav a:hover {
    background-color: rgba(79, 70, 229, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-hero {
    background: linear-gradient(135deg, #faf5f0 0%, #f4f1eb 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    margin: 0;
}

.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #faf5f0 0%, #f4f1eb 100%);
}

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

.content-block h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 2;
    max-width: 400px;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;

.values-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.value-item h3 {
    color: #4f46e5;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
    margin: 0;
}

.legal-placeholder {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
    text-align: center;
}

.legal-placeholder h2 {
    color: #6b7280;
    margin-bottom: 1rem;
}

.legal-placeholder p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.legal-placeholder ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    color: #6b7280;
}

.legal-placeholder li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .story-content,
    .story-continuation {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-placeholder {
        padding: 2rem 1rem;
    }
}