/* Pages CSS - Auxiliary Pages Styles */
.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    background: linear-gradient(135deg, #F8FBFB, #E8F5E8);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header .logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.page-header .logo {
    width: 60px;
    height: 60px;
}

.page-header .brand-name {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
    color: #2F5233;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2F5233;
    margin: 0;
}

.page-main {
    padding: 80px 0;
    min-height: 400px;
}

.page-content {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.1);
    margin-bottom: 40px;
}

.page-content h2 {
    color: #2F5233;
    margin-bottom: 25px;
    text-align: left;
}

.page-content p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-content .placeholder-text {
    background: #F8FBFB;
    padding: 40px;
    border-radius: 8px;
    border: 2px dashed #2F5233;
    text-align: center;
    color: #2F5233;
    font-style: italic;
    margin: 40px 0;
}

/* About Page Specific Styles */
.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.about-blocks {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.about-intro .about-image {
    margin-top: 40px;
}

.about-intro .about-image .image-placeholder {
    max-width: 600px;
    margin: 0 auto;
    min-height: 300px;
}

.about-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.1);
}

.about-block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    color: #2F5233;
    margin-bottom: 20px;
}

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

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

.about-image .image-placeholder {
    min-height: 250px;
}

.about-main-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.15);
}

.about-secondary-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(47, 82, 51, 0.15);
}

.about-block h3 {
    color: #2F5233;
    margin-bottom: 20px;
}

/* Footer for pages */
.page-footer {
    background: #2F5233;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.page-footer .logo-small {
    width: 40px;
    height: 40px;
}

.page-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 500;
}

.page-footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.page-footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-footer-nav a:hover {
    color: white;
}

.page-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
}

.page-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .brand-name {
        font-size: 1.5rem;
    }
    
    .page-content {
        padding: 40px 25px;
    }
    
    .page-footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-block-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-main-image {
        height: 250px;
    }
    
    .about-secondary-image {
        height: 200px;
    }
    
    .about-illustration {
        order: -1;
    }
}