/* Auxiliary Pages Styles */

.centered {
    text-align: center;
}

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

.content-text {
    text-align: left;
}

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

.content-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #E6DFD0;
}

.content-svg svg {
    max-width: 100%;
    height: auto;
}

.page-header {
    background: linear-gradient(135deg, #F5F1E8 0%, #F0EBD8 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #E6DFD0;
}

.page-header h1 {
    color: #2D5A5A;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #4A8080;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.main-content {
    padding: 4rem 0;
    background-color: #FFFFFF;
    min-height: 60vh;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.content-section h2 {
    color: #2D5A5A;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.75rem;
    border-bottom: 2px solid #CC7A00;
    padding-bottom: 0.5rem;
}

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

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-text {
        text-align: center;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 3rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
}