/* Additional styles for auxiliary pages */

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

.page-hero {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.page-section:nth-child(even) {
    background: #f8f9fa;
}

.page-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.page-section p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

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

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .content-placeholder {
        padding: 2rem 1rem;
    }
}

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2196F3;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
}