/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Blocks */
.content-block {
    padding: 80px 0;
    background-color: white;
}

.content-block.alt {
    background-color: #f8fafc;
}

.content-block h2 {
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 32px;
    text-align: center;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Empty Content Placeholder */
.empty-content {
    text-align: center;
    padding: 80px 20px;
}

.empty-content p {
    font-size: 18px;
    color: #64748b;
    font-style: italic;
}

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-content.single-column {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-text.centered h2 {
    text-align: center;
}

.about-text p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.about-text.centered p {
    text-align: center;
}

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

.about-image.centered {
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #1e40af;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .content-block p {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .about-image .image-placeholder {
        width: 280px;
        height: 180px;
    }
    
    .about-img {
        max-width: 100%;
        height: 200px;
    }
}