/* Auxiliary Pages Styles */

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

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 0;
}

.page-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.page-section h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #fb7185;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.page-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-image-about {
    margin: 2rem 0;
    text-align: center;
}

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

.team-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

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

.team-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

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

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

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

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

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

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .about-hero-image {
        height: 200px;
    }
    
    .team-image-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-main {
        padding: 2rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-section {
        margin-bottom: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.75rem;
    }
    
    .content-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .page-section p {
        font-size: 1rem;
    }
}