/* Additional styles for auxiliary pages */

/* Ensure proper base styles for pages */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
    padding: 4rem 0;
    background: #f8fafc;
}

.page-main .container {
    max-width: 800px;
}

.page-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.page-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: left;
}

.page-section p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.page-section p:last-child {
    margin-bottom: 0;
}

.page-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-style: italic;
}

.page-content:before {
    content: "Content will be added here";
}

/* About page specific styles */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
}

.text-content {
    flex: 1;
}

.services-illustration,
.expertise-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.about-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.standard-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.standard-icon {
    margin-bottom: 1rem;
}

.standard-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.standard-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-main h1 {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .page-content {
        padding: 2rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-main {
        padding: 2rem 0;
    }
}