/* Auxiliary Pages Styles */
.aux-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.back-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.back-link:hover {
    background: #f8fafc;
    color: #FF6B47;
    border-color: #FF6B47;
}

.aux-main {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.aux-section {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.aux-section h1 {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.content-block h2 {
    color: #FF6B47;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #475569;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-content {
    margin-top: 2rem;
}

.placeholder-text {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 12px;
    color: #64748b;
    font-style: italic;
    border-left: 4px solid #FF6B47;
}

/* About Page Specific Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 3rem;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
}

.about-image {
    text-align: center;
}

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

.about-intro {
    text-align: center;
}

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

.feature-illustration, .community-illustration {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
}

.illustration-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.team-photo {
    text-align: center;
    margin: 30px 0;
}

.team-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.photo-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Policy Pages Links */
.policy-content a {
    color: #FF6B47;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .aux-section {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .aux-section h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-illustration svg, .community-illustration svg {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .aux-section {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .aux-section h1 {
        font-size: 1.75rem;
    }
    
    .content-block h2 {
        font-size: 1.25rem;
    }
}