/* Additional styles for auxiliary pages */

/* Content layout styles */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

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

.content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-section h2 {
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00D4AA;
    display: inline-block;
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
}

.content-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.content-placeholder p {
    color: #666;
    font-style: italic;
    margin: 0;
}

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