/* Auxiliary Pages Styles */

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

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.logo-container .logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

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

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
    background: #f1f5f9;
}

/* Enhanced Page Title Section */
/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.page-title p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 0;
}

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

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

.content-section.cta-section {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.content-section.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.content-section.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

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

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

.content-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

/* Enhanced Legal Content */
.content-visual {
    display: flex;
    justify-content: center;
}

.content-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.approach-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.approach-icon svg {
    width: 100%;
    height: 100%;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    padding: 24px;
    text-align: center;
}

.value-item h3 {
    color: #1e3a8a;
    margin-bottom: 16px;
}

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

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}

.legal-section h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 16px;
    margin-top: 24px;
}

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

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

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

.legal-section a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
    color: #3b82f6;
}

.contact-info a {
    color: #1e3a8a;
    text-decoration: none;
}

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

/* Enhanced Cookie Tables */
/* Cookie Tables */
.cookie-table {
    margin: 24px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e3a8a;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

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

.value-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #1e3a8a;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer Updates */
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Enhanced Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 12px 0;
    }
    
    .dashboard-image {
        height: 250px;
    }
    
    .dashboard-overlay .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-image {
        height: 200px;
    }
    
    .testimonials-image {
        height: 180px;
    }
    
    .content-image {
        height: 250px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .page-nav {
        gap: 16px;
    }
    
    .page-title {
        padding: 60px 0 40px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 12px;
    }
}

@media (max-width: 600px) {
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 16px;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .page-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .page-title h1 {
        font-size: 1.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .approach-card,
    .value-item {
        padding: 24px 16px;
    }
    
    .legal-document {
        padding: 0 8px;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .page-title p {
        font-size: 1rem;
    }
}