/* Pages Styles */
.page-header {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    padding: 4rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.page-title {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--accent-color);
}

.section-content {
    color: var(--text-primary);
    line-height: 1.7;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.section-content ul li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.section-content ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    right: 0;
    top: 0.5rem;
}

.highlight-box {
    background: var(--background-light);
    border-right: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .page-header {
        background: none;
        padding: 2rem 0;
    }
    
    .page-title {
        color: var(--primary-color);
    }
    
    .page-description {
        color: var(--text-primary);
    }
    
    .content-section {
        break-inside: avoid;
        box-shadow: none;
    }
}