/* Auxiliary Pages Styles */

.page-main {
    min-height: 70vh;
    padding: 80px 0;
    background-color: #FAFAFA;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2D5016;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #E5E5B8;
    padding-bottom: 20px;
}

.page-section {
    margin-bottom: 50px;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(45, 80, 22, 0.08);
    border-left: 4px solid #2D5016;
}

.page-section h2 {
    font-size: 1.8rem;
    color: #2D5016;
    margin-bottom: 20px;
    font-weight: 400;
}

.page-section p {
    color: #4A6741;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-placeholder {
    background-color: #F9F9F9;
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px dashed #CCC;
    text-align: center;
    margin: 40px 0;
}

.content-placeholder p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.about-image {
    border-radius: 8px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 30px 0;
}

.about-svg-illustration {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #FAFAFA;
    border-radius: 8px;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-section {
        padding: 25px;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .content-placeholder {
        padding: 40px 20px;
    }
    
    .about-svg-illustration svg {
        width: 250px;
        height: 150px;
    }
}