/* Auxiliary Pages Styles */

.main-content {
    min-height: 70vh;
    padding: 4rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    color: #6b7280;
}

.content-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.content-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-illustration {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.empty-content {
    text-align: center;
    padding: 3rem 0;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .main-content {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 1rem;
        margin: 0 0.5rem 1rem;
    }
    
    .content-section h2 {
        font-size: 1.25rem;
    }
    
    .about-content-with-image {
        gap: 1rem;
    }
    
    .about-image img {
        height: 200px;
    }
}