/* Auxiliary Pages Styles */

.main-content {
    min-height: 70vh;
    padding: 4rem 0;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 20px;
}

.content-section h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid #14B8A6;
    padding-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

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

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

/* About page specific styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-hero.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-hero.reverse .about-image {
    order: -1;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1rem 0 0.5rem 0;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .placeholder-content {
        padding: 2rem;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero.reverse .about-image {
        order: 0;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-visual svg {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 0 15px;
    }
    
    .about-image img {
        height: 200px;
    }
}