/* Additional styles for auxiliary pages */

.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.content-block.centered {
    text-align: center;
}

.content-block.centered h2,
.content-block.centered p {
    text-align: center;
}

.content-block.centered .values-grid,
.content-block.centered .founders-grid {
    text-align: center;
}

.page-header {
    background-color: #1A237E;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header p {
    font-size: 20px;
    color: #B0BEC5;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.content-block h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 32px;
    font-weight: 400;
}

.content-block p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mission-illustration {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

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

.value-item svg {
    margin-bottom: 20px;
}

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

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.founder-card {
    background-color: #FEFEFE;
    border-radius: 12px;
    border: 1px solid #E8E4E0;
    padding: 32px;
    text-align: center;
}

.founder-image {
    margin-bottom: 24px;
}

.founder-image .image-placeholder {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin: 0 auto;
}

.founder-img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 22px;
    color: #1A237E;
    margin-bottom: 8px;
    font-weight: 500;
}

.founder-title {
    font-size: 16px;
    color: #D4A574;
    font-weight: 500;
    margin-bottom: 16px !important;
}

.founder-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-text {
    text-align: left;
}

.story-illustration {
    display: flex;
    justify-content: center;
}

.legal-content {
    text-align: left;
}

.last-updated {
    font-style: italic;
    color: #8B7355;
    margin-bottom: 32px !important;
    font-size: 16px !important;
}

.legal-content h2 {
    font-size: 24px;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

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

/* Responsive Design for Pages */
@media (max-width: 1024px) {
    .values-grid,
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .content-block p {
        font-size: 16px;
    }
    
    .legal-content h2 {
        font-size: 22px;
    }
    
    .legal-content p {
        font-size: 16px;
    }
}