/* Auxiliary Pages Styles */

.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 3rem;
    text-align: center;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-block p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.content-placeholder {
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
    text-align: center;
}

.content-placeholder p {
    color: #6b7280;
    font-style: italic;
    font-size: 1.1rem;
}

/* About page specific styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
}

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

.team-photo {
    margin: 2rem 0;
    text-align: center;
}

.expertise-visual,
.process-visual {
    text-align: center;
    margin: 2rem 0;
}

.expertise-visual svg,
.process-visual svg {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-content {
        padding: 60px 0;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-placeholder {
        padding: 2rem;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .hero-photo,
    .content-photo {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-content h1 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.25rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .content-placeholder {
        padding: 1.5rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .hero-photo,
    .content-photo {
        height: 200px;
    }
}