/* Additional styles for auxiliary pages */

.page-hero {
    background: linear-gradient(135deg, #F5F1EB 0%, #E2E8F0 100%);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

.main-content {
    padding: 80px 0;
}

.content-section {
    padding: 40px 0;
}

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

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

.content-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text p {
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.content-text ul {
    color: #4A5568;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.6;
}

.content-text li {
    margin-bottom: 8px;
}

.content-text strong {
    color: #2D3748;
    font-weight: 600;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-illustration {
    max-width: 100%;
    height: auto;
}

/* About page specific styles */
.approach-points {
    margin: 30px 0;
}

.approach-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.approach-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.approach-point h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 5px;
}

.approach-point p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.values-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.values-content > p {
    color: #4A5568;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 16px;
}

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

.value-item {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 10px;
}

.value-item p {
    color: #6B7280;
    line-height: 1.4;
    font-size: 14px;
}

.value-icon {
    margin-bottom: 15px;
}

/* Legal pages styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 15px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 10px;
}

.policy-section p {
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.policy-section ul {
    color: #4A5568;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.6;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section a {
    color: #6B7280;
    font-weight: 500;
    text-decoration: none;
}

.policy-section a:hover {
    color: #8B9DC3;
    text-decoration: underline;
}

.placeholder-content {
    background: linear-gradient(135deg, #F9FAFB 0%, #F5F1EB 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed #8B9DC3;
}

.placeholder-content p {
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.placeholder-content ul {
    color: #4A5568;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.6;
}

.placeholder-content li {
    margin-bottom: 8px;
}

.placeholder-content a {
    color: #6B7280;
    font-weight: 500;
    text-decoration: none;
}

.placeholder-content a:hover {
    color: #8B9DC3;
    text-decoration: underline;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .values-content h2 {
        font-size: 24px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .content-section {
        padding: 30px 0;
    }
    
    .approach-point {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .placeholder-content {
        padding: 30px 20px;
    }
    
    .content-illustration {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .content-text h2,
    .values-content h2 {
        font-size: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        padding: 15px;
    }
    
    .policy-section h2 {
        font-size: 18px;
    }
    
    .placeholder-content {
        padding: 20px 15px;
    }
    
    .content-illustration {
        max-width: 100%;
    }
}