/* Auxiliary Pages Styles */

.aux-nav {
    display: flex;
    gap: 1rem;
}

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

.nav-link:hover {
    background-color: #f3f4f6;
    color: #134e4a;
}

.aux-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 3rem 0;
    text-align: center;
}

.aux-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.aux-content {
    padding: 4rem 0;
    background: #ffffff;
}

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

.content-block h2 {
    color: #134e4a;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.75rem;
}

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

.feature-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #65a30d;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list strong {
    color: #1f2937;
    font-weight: 600;
}

.empty-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.empty-content p {
    font-size: 1.1rem;
    color: #6b7280;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    margin: 0;
}

.content-image {
    margin: 2rem 0;
    text-align: center;
}

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

.svg-illustration {
    margin: 2rem 0;
    text-align: center;
}

.svg-illustration svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .aux-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block p,
    .feature-list li {
        font-size: 1rem;
    }
    
    .aux-nav {
        margin-top: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .svg-illustration svg {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .aux-content {
        padding: 2rem 0;
    }
    
    .empty-content {
        padding: 2rem 1rem;
    }
}