/* Additional styles for auxiliary pages */

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

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.page-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

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

.content-block {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.content-block:last-of-type {
    margin-bottom: 0;
}

.content-block h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.content-block p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.content-svg svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.empty-content {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-content p {
    color: #9ca3af;
    font-style: italic;
    font-size: 1.125rem;
    margin: 0;
}

/* Header adjustments for auxiliary pages */
.brand-name-link {
    text-decoration: none;
}

.brand-name-link:hover .brand-name {
    color: #1d4ed8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-main {
        padding: 1rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-image img {
        height: 200px;
    }
    
    .empty-content {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h2 {
        font-size: 1.75rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.375rem;
    }
}