/* Auxiliary Pages Styles */
.page-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 127, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #F8FAFC 0%, #CBD5E1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
}

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

.content-block h2 {
    color: #F8FAFC;
    margin-bottom: 24px;
}

.content-block p {
    margin-bottom: 24px;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #CBD5E1;
}

.alt-section {
    background: rgba(30, 41, 59, 0.3);
}

.legal-content {
    padding: 40px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.placeholder-text {
    color: #64748B;
    font-style: italic;
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.3);
}

/* Legal content styling */
.legal-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #F8FAFC;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 16px;
    color: #CBD5E1;
    line-height: 1.7;
}

.legal-section a {
    color: #6366F1;
    text-decoration: none;
}

.legal-section a:hover {
    color: #8B5CF6;
    text-decoration: underline;
}

/* About page enhancements */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-left, .content-right {
    padding: 0;
}

.image-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

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

.tech-features {
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366F1, #FF7F7F);
    border-radius: 50%;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .legal-content {
        padding: 24px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .svg-illustration svg {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .legal-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
}