/* Auxiliary Pages Styles */

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

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #F5DEB3 0%, #E8DCC0 100%);
    border-radius: 16px;
}

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

.page-header p {
    color: #5D2F0A;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
    margin-bottom: 2rem;
}

.content-block h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-block p {
    color: #4A3429;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    color: #8B4513;
    background: linear-gradient(135deg, #F9F7F4 0%, #F5F2EF 100%);
    border-radius: 12px;
    border: 2px dashed #D2B48C;
}

.empty-content p {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0;
    font-style: italic;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .empty-content {
        padding: 3rem 1.5rem;
    }
}

/* About Us Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #F9F7F4 0%, #F5F2EF 100%);
    border-radius: 12px;
    border: 1px solid #E8DCC0;
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5D2F0A;
    margin-bottom: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
}