/* Additional Styles for Auxiliary Pages */

.page-main {
    min-height: calc(100vh - 300px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(rgba(30, 58, 138, 0.05), rgba(30, 58, 138, 0.05));
    border-radius: 12px;
}

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

.page-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    background: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-grid.reverse .content-text {
    order: 2;
}

.content-grid.reverse .content-image {
    order: 1;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.content-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

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

.content-image {
    background: #f8f9fa;
    border-radius: 8px;
}

.content-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
    text-align: center;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
    height: 300px;
}

/* Responsive for Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse .content-text,
    .content-grid.reverse .content-image {
        order: unset;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-placeholder {
        padding: 2rem;
    }
    
    .content-svg {
        padding: 1rem;
    }
}