/* Auxiliary Pages Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: #f9fafb;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse .content-text,
.content-grid.reverse .content-image {
    direction: ltr;
}

.content-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-image .image-placeholder {
    height: 300px;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

.content-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Expertise Section */
.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.expertise-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    min-height: 400px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal-text h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-text h2:first-child {
    margin-top: 0;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 60px 0;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
    }

    .expertise-visual svg {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .content-photo {
        height: 250px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}