/* Auxiliary Pages Styles */

.page-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.page-nav a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.page-nav a:hover {
    color: #06b6d4;
    background-color: #f0f9ff;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

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

/* About Page Specific Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.about-image svg {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
}

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

.legal-notice {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #06b6d4;
    margin-bottom: 3rem;
}

.legal-notice p {
    margin: 0;
    color: #475569;
    font-weight: 500;
}

.content-placeholder {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 16px;
    border: 2px dashed #d1d5db;
    text-align: center;
}

.content-placeholder p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.content-placeholder ul {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}

.content-placeholder ul li {
    color: #6b7280;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.content-placeholder ul li:before {
    content: "•";
    color: #06b6d4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.content-placeholder ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .content-placeholder {
        padding: 2rem;
    }
    
    .legal-notice {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .page-nav {
        margin-left: 0;
    }
    
    .about-intro,
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}