/* Additional styles for auxiliary pages */

.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 600;
    color: #2D5A27;
    margin-bottom: 16px;
    line-height: 1.2;
}

.last-updated {
    font-size: 16px;
    color: #6B7280;
    font-style: italic;
    margin: 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-image {
    margin: 32px 0;
    text-align: center;
}

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

.values-illustration,
.community-illustration,
.sustainability-illustration {
    margin: 32px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2D5A27;
    margin-bottom: 24px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

.empty-content {
    text-align: center;
    padding: 60px 20px;
}

.empty-content p {
    font-size: 18px;
    color: #9CA3AF;
    font-style: italic;
    text-align: center;
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-section {
        padding: 24px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section p {
        font-size: 16px;
    }
}