/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #166564 0%, #134e4d 100%);
    color: white;
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: #f8fafc;
}

.content-text.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* About Page Specific */
.expertise-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-item {
    padding: 0.75rem 1rem;
    background: #ecfdf5;
    border-left: 4px solid #166564;
    color: #166564;
    font-weight: 500;
}

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

.value-item {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-item h3 {
    color: #166564;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.placeholder-content {
    padding: 3rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
    text-align: center;
}

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

/* SVG Illustrations */
.svg-illustration {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 2rem;
}

.svg-illustration svg {
    width: 100%;
    height: auto;
}

/* Mobile Responsiveness for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 3rem 0 2rem 0;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-list {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
    
    .svg-illustration {
        padding: 1rem;
    }
}