/* Page-specific styles for auxiliary pages */

.page-header {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header .logo-brand {
    margin: 0;
}

.page-header .brand-name {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page-nav a {
    color: #E2E8F0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: white;
}

.nav-cta {
    background: #D69E2E;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #B7791F !important;
    transform: translateY(-2px);
}

.page-hero {
    background: #F8FAFC;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

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

.page-hero p {
    color: #4A5568;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.content-section.alt-bg {
    background: #F8FAFC;
}

.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 h2 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.approach-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4A5568;
}

.feature-item svg {
    color: #48BB78;
    flex-shrink: 0;
}

.commitment-content {
    text-align: center;
}

.commitment-content h2 {
    color: #4F46E5;
    margin-bottom: 3rem;
}

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

.commitment-item {
    text-align: center;
    padding: 2rem;
}

.commitment-icon {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

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

.commitment-item p {
    color: #4A5568;
    line-height: 1.6;
}

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

.placeholder-content {
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #CBD5E0;
    text-align: center;
}

.placeholder-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4A5568;
}

.placeholder-content ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-content li {
    padding: 0.5rem 0;
    color: #4A5568;
    border-bottom: 1px solid #E2E8F0;
}

.placeholder-content li:last-child {
    border-bottom: none;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-nav {
        justify-content: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .commitment-icon {
        width: 60px;
        height: 60px;
    }
    
    .placeholder-content {
        padding: 2rem;
    }
}