/* Auxiliary Pages Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.last-updated {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

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

.content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text h3 {
    color: #1e3a8a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text h3:first-child {
    margin-top: 0;
}

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

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

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    color: #1e3a8a;
}

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

.value-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-item p {
    color: #4b5563;
    margin: 0;
}

/* Technology Features */
.tech-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.tech-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.tech-feature h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.tech-feature p {
    color: #4b5563;
    margin: 0;
}

/* Commitment Section */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.125rem;
    color: #374151;
    text-align: center;
    margin-bottom: 3rem;
}

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

.commitment-point {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.commitment-point h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.commitment-point p {
    color: #4b5563;
    margin: 0;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem 0;
}

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

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

.legal-section h2 {
    color: #1e3a8a;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    text-align: left;
}

.legal-section h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #374151;
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

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

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info address {
    font-style: normal;
    color: #4b5563;
}

/* Header Links */
.header .brand-name h1 a {
    color: #1e3a8a;
    text-decoration: none;
}

.header .brand-name h1 a:hover {
    color: #1e40af;
}

/* Footer Legal Section */
.footer-section {
    margin-bottom: 1rem;
}

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-points {
        grid-template-columns: 1fr;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 0 1rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .value-item,
    .tech-feature,
    .commitment-point {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .content-main-image {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}