/* Auxiliary Pages Styles */

.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid #E8E1D4;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0D4F4C;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.5;
}

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

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0D4F4C;
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.2;
}

.content-block p {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.content-block ul,
.content-block ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-block li {
    color: #4A5568;
    margin-bottom: 8px;
    line-height: 1.5;
}

.content-block em {
    color: #6B7280;
    font-style: italic;
}

/* Links in auxiliary pages */
.content-block a {
    color: #0D4F4C;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-block a:hover {
    color: #F4A261;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-block {
        margin-bottom: 32px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .content-block h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 0;
    }
    
    .page-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .content-block h2 {
        font-size: 22px;
    }
    
    .content-block h3 {
        font-size: 18px;
        margin-top: 24px;
    }