/* Auxiliary Pages Styles */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-section {
    padding: 60px 0;
}

.page-section.alt-bg {
    background: #F8FAFC;
}

.page-section h2 {
    font-size: 2rem;
    color: #4F46E5;
    margin-bottom: 30px;
    text-align: center;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 25px;
}

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

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

.about-image .placeholder-image {
    min-height: 300px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

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

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-item {
    text-align: center;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.expertise-icon {
    margin-bottom: 20px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

.expertise-item p {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

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

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-item {
    text-align: center;
    padding: 25px;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.commitment-item h4 {
    font-size: 1.2rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

.commitment-item p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .about-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content.reverse {
        direction: ltr;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 40px 0;
    }
    
    .page-section h2 {
        font-size: 1.8rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-section h2 {
        font-size: 1.6rem;
    }
}