/* Auxiliary CSS for About, Privacy, Terms, and Cookie pages */

/* Legal Content Styles */
.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.legal-section h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.legal-section strong {
    color: #1e293b;
    font-weight: 600;
}

.legal-section a {
    color: #DC2626;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section em {
    color: #64748b;
    font-style: italic;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Block Styles */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

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

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

.content-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image img {
    aspect-ratio: 4/3;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Alternative Background */
.alt-bg {
    background-color: #f8fafc;
}

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

.legal-placeholder {
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
}

.legal-placeholder h2 {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-placeholder p {
    color: #64748b;
    margin-bottom: 1rem;
}

.legal-placeholder p:last-child {
    margin-bottom: 0;
}

.legal-placeholder em {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Header Brand Link */
.header-brand a.brand-name {
    color: #1e293b;
    text-decoration: none;
}

.header-brand a.brand-name:hover {
    color: #DC2626;
    text-decoration: none;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .content-text {
        text-align: center;
    }
    
    .legal-placeholder {
        padding: 2rem 1rem;
    }
    
    .legal-placeholder h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .legal-placeholder {
        padding: 1.5rem 1rem;
    }
}