/* Auxiliary Pages Styles */

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

.page-hero {
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.content-block h3 {
    color: #2D1B69;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FFC436;
}

.content-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.content-image .image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #e8e9ff 0%, #f8f9ff 100%);
    border: 2px dashed #2D1B69;
    border-radius: 12px;
    color: #2D1B69;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

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

.content-svg svg {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 27, 105, 0.1);
}

.content-placeholder {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px dashed rgba(45, 27, 105, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #666;
    font-style: italic;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-placeholder p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h2 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-placeholder {
        padding: 2rem;
        min-height: 200px;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-image .image-placeholder {
        height: 200px;
    }
    
    .content-svg svg {
        width: 100%;
        height: auto;
        max-width: 280px;
    }
}