/* Auxiliary Pages Styles */
.main-content {
    min-height: 70vh;
    padding: 4rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.content-section {
    margin-bottom: 3rem;
    padding: 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cobalt-blue);
    text-align: left;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.content-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--cobalt-blue);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 1rem;
}

.content-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cobalt-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.placeholder-content {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

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

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }