/* Auxiliary Pages Specific Styles */

/* Page Header */
.page-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2b6cb0;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

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

.content-section.bg-light {
    background-color: #f7fafc;
}

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

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

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

.content-text h2 {
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.content-text p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Modern Image Styles for Auxiliary Pages */
.content-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-image {
    height: 300px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 16px;
    color: #1a365d;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Tech Stats */
.tech-stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item span {
    color: #718096;
    font-size: 0.9rem;
}

/* Compliance Content */
.compliance-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6;
}

.compliance-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.compliance-item {
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2b6cb0;
}

.compliance-item h4 {
    color: #1a365d;
    margin-bottom: 12px;
}

.compliance-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #1a365d;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #63b3ed;
    border-color: #63b3ed;
}

.cta-section .btn-primary:hover {
    background-color: #4299e1;
    border-color: #4299e1;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    color: #2d3748;
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    color: #2d3748;
    margin: 1.5rem 0 0.75rem 0;
}

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

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #2b6cb0;
    text-decoration: none;
}

.contact-info a:hover {
    color: #2c5282;
}

.browser-instructions {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 1rem;
}

.browser-instructions p {
    margin-bottom: 0.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}

/* Footer Links Update */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-links p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-links a {
    color: #63b3ed;
    text-decoration: none;
}

.footer-links a:hover {
    color: #90cdf4;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-nav {
        gap: 20px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-small {
        width: 100%;
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
}