/* Auxiliary Pages Styles */

/* Navigation for auxiliary pages */
.aux-nav {
    display: flex;
    align-items: center;
}

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

.nav-link:hover {
    background-color: #F7FAFC;
    color: #D69E2E;
}

/* Main content area */
.aux-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero section for auxiliary pages */
.aux-hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
    border-bottom: 1px solid #E2E8F0;
}

.aux-hero h1 {
    font-size: 3rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.aux-hero p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Content sections */
.aux-section {
    padding: 3rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.aux-section:last-child {
    border-bottom: none;
}

.aux-section h2 {
    color: #2D3748;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #D69E2E;
    display: inline-block;
}

.aux-content {
    max-width: 800px;
}

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

/* Content with images and SVG layouts */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

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

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

.content-svg svg {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(45, 55, 72, 0.1);
}

/* Placeholder content for empty pages */
.aux-content-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #F7FAFC;
    border-radius: 12px;
    border: 2px dashed #CBD5E0;
}

.aux-content-placeholder p {
    font-size: 1.1rem;
    color: #718096;
    margin: 0.5rem 0;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-svg svg {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    
    .aux-hero h1 {
        font-size: 2.5rem;
    }
    
    .aux-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .aux-section {
        padding: 2rem 0;
    }
    
    .aux-section h2 {
        font-size: 1.8rem;
    }
    
    .aux-content p {
        font-size: 1rem;
    }
    
    .aux-content-placeholder {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .aux-hero {
        padding: 2rem 0;
    }
    
    .aux-hero h1 {
        font-size: 2rem;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}