/* Auxiliary Pages Styles */
.aux-header {
    background-color: var(--porcelain-white);
    border-bottom: 1px solid var(--medium-gray);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.aux-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aux-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.aux-nav a {
    text-decoration: none;
    color: var(--fog-gray);
    font-size: 0.925rem;
    transition: color 0.2s ease;
}

.aux-nav a:hover,
.aux-nav a.active {
    color: var(--charcoal-black);
}

.back-link {
    color: var(--muted-ochre) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link::before {
    content: '←';
    font-size: 1.125rem;
}

/* Page Content */
.page-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-header p {
    font-size: 1.125rem;
    color: var(--fog-gray);
    line-height: 1.6;
}

/* About Us Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.about-text h2 {
    color: var(--muted-ochre);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--fog-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-visual {
    background-color: var(--light-gray);
    border-radius: 8px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fog-gray);
    font-size: 0.875rem;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    background-color: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background-color: var(--muted-ochre);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-black);
    font-weight: 500;
    font-size: 1.25rem;
}

.value-item h3 {
    color: var(--charcoal-black);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.value-item p {
    color: var(--fog-gray);
    font-size: 0.925rem;
    line-height: 1.5;
    margin: 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-description {
    text-align: center;
    color: var(--fog-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Empty Content Placeholder */
.empty-content {
    background-color: var(--light-gray);
    border: 2px dashed var(--medium-gray);
    border-radius: 4px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--fog-gray);
    margin: 2rem 0;
}

.empty-content h3 {
    margin-bottom: 0.5rem;
    color: var(--charcoal-black);
}

.empty-content p {
    margin: 0;
    font-size: 0.925rem;
}

/* Policy Content Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--muted-ochre);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.policy-section p {
    color: var(--fog-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced About Us Styles */
.curation-process {
    background-color: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 4px;
    margin: 3rem 0;
    text-align: center;
}

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

.process-step {
    text-align: center;
}

.process-icon {
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
}

.process-step h3 {
    color: var(--charcoal-black);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.process-step p {
    color: var(--fog-gray);
    font-size: 0.925rem;
    line-height: 1.5;
    margin: 0;
}

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

.expertise-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 4px;
}

.expertise-icon {
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
}

.expertise-item h4 {
    color: var(--charcoal-black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.expertise-item p {
    color: var(--fog-gray);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .aux-header .container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .aux-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        height: 250px;
    }
    
    .values-section {
        padding: 2rem 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .empty-content {
        padding: 3rem 1rem;
    }
}