/* Additional CSS for auxiliary pages */

/* Content with images */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin: var(--spacing-lg) 0;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-with-image.reverse .text-part {
    order: 2;
}

.content-with-image.reverse .image-part {
    order: 1;
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Ensure all images in content sections have proper styling */
.content-with-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Value items with icons */
.value-item {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--secondary-color);
    text-align: center;
}

.value-icon {
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
}

/* Process illustration */
.process-illustration {
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
}

.process-steps-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-icon {
    margin-bottom: var(--spacing-xs);
    display: flex;
    justify-content: center;
}

.process-step h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Main content area */
.main-content {
    min-height: calc(100vh - 200px);
    padding: var(--spacing-2xl) 0;
}

/* Page header */
.page-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* Content sections */
.content-section {
    margin-bottom: var(--spacing-2xl);
}

.content-section h2 {
    text-align: left;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.text-content {
    max-width: 100%;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Highlight boxes */
.highlight-box {
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.value-item {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--secondary-color);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA sections */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.cta-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Empty content for placeholder pages */
.empty-content {
    text-align: center;
    padding: var(--spacing-2xl);
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.empty-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.empty-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
}

.contact-info a {
    font-weight: 600;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-with-image.reverse .text-part,
    .content-with-image.reverse .image-part {
        order: unset;
    }
    
    .process-steps-visual {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .content-image,
    .content-with-image img {
        height: 200px;
    }
}