/* Auxiliary Pages Styles */

/* Page Navigation */
.page-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
}

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

.page-header-content h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 4rem 0;
    background: #ffffff;
}

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

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

.content-with-image,
.content-with-svg {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 300px;
}

.content-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-svg {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.content-block h2 {
    color: #1f2937;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: left;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.policy-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.contact-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin: 1rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #374151;
}

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

.last-updated {
    font-style: italic;
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.legal-notice {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        flex-direction: column;
        text-align: center;
    }
    
    .content-with-image.reverse {
        flex-direction: column;
    }
    
    .content-image,
    .content-svg {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1.125rem;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block p,
    .legal-notice {
        font-size: 1rem;
    }
    
    .legal-notice {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .page-content {
        padding: 3rem 0;
    }
    
    .page-header-content h1 {
        font-size: 1.75rem;
    }
    
    .content-block h2 {
        font-size: 1.25rem;
    }
}