/* Additional styles for auxiliary pages */

.page-header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #E8E8E8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-brand {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4A5D23;
}

.page-main {
    min-height: 70vh;
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #F2F1ED 100%);
}

.page-main h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4A5D23;
}

.page-section {
    margin-bottom: 4rem;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.05);
}

.page-section h2 {
    color: #4A5D23;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.8rem;
}

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

.page-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.05);
    min-height: 300px;
}

.placeholder-text {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 40px;
    background-color: #F9F8F6;
    border: 1px dashed #CCC;
    border-radius: 4px;
}

/* About page specific styles */
.about-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(74, 93, 35, 0.05);
}

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

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-main h1 {
        font-size: 2rem;
    }
    
    .page-section,
    .page-content {
        padding: 30px 20px;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .header-brand {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 40px 0;
    }
    
    .page-main h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .page-section,
    .page-content {
        padding: 20px 15px;
    }
    
    .header-logo {
        gap: 10px;
    }
    
    .header-brand {
        font-size: 1.1rem;
    }
}