/* Additional styles for auxiliary pages */

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

.page-nav {
    display: flex;
    gap: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6B7BFF 0%, #5A6AEF 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    text-align: center;
}

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

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

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

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

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

.content-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

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

.philosophy-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.philosophy-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E8E2D4;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-list strong {
    color: #6B7BFF;
}

.story-illustration, .philosophy-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Commitment Section */
.commitment-content {
    text-align: center;
}

.commitment-intro {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

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

.commitment-item {
    background: #F5F2E8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.commitment-icon {
    margin-bottom: 1.5rem;
}

.commitment-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #666;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    min-height: 400px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.document-info {
    padding-bottom: 2rem;
    border-bottom: 2px solid #E8E2D4;
    margin-bottom: 2rem;
}

.document-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.document-content {
    line-height: 1.8;
}

.placeholder-text {
    background: #F5F2E8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6B7BFF;
    font-style: italic;
    color: #666;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .page-nav {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .legal-document {
        padding: 1.5rem;
    }
}