/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background-color: #2D3748;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-link .logo {
    height: 40px;
    width: 40px;
    margin-right: 12px;
}

.brand-link .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00BCD4;
}

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

.nav-link {
    color: #E2E8F0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00BCD4;
    border-bottom-color: #00BCD4;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #E2E8F0;
    margin-bottom: 1rem;
}

.last-updated {
    color: #CBD5E0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

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

.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 {
    margin-bottom: 1.5rem;
    color: #2D3748;
}

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

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

/* Technology Highlights */
.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #F7FAFC;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
}

.tech-icon {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

.tech-item span {
    font-weight: 500;
    color: #2D3748;
}

/* Compliance Badges */
.compliance-badges {
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #F7FAFC;
    border-radius: 8px;
}

.badge-icon {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

.badge-item span {
    font-weight: 500;
    color: #2D3748;
}

/* Values Grid */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2D3748;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.value-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #2D3748;
}

.value-card p {
    color: #4A5568;
}

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

.legal-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: #2D3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00BCD4;
}

.legal-section h3 {
    color: #2D3748;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

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

.contact-info a {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00BCD4;
    border-bottom-color: #00BCD4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-nav {
        gap: 1rem;
    }

    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
    }

    .tech-highlights {
        margin-top: 1.5rem;
    }

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

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .tech-item,
    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .tech-icon,
    .badge-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}