/* Additional styles for auxiliary pages */

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

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

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

.page-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    margin: 0;
}

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

.page-section h2 {
    color: #1B2951;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #F8FAFC;
    border-radius: 12px;
    border: 2px dashed #D1D5DB;
}

.empty-content p {
    color: #9CA3AF;
    font-size: 1.1rem;
    margin: 0;
}

/* About page specific styles */
.about-image {
    margin: 2rem 0;
    text-align: center;
}

.about-photo {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tech-illustration,
.team-illustration {
    margin: 2rem 0;
    text-align: center;
}

.about-svg {
    max-width: 100%;
    height: auto;
    background: #FAFBFC;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #E2E8F0;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-main {
        padding: 2rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-section {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .empty-content {
        padding: 3rem 1rem;
    }
    
    .about-photo {
        height: 200px;
    }
    
    .about-svg {
        padding: 0.5rem;
    }
    
    .tech-illustration svg,
    .team-illustration svg {
        width: 100%;
    }
}