/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background-color: var(--white);
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--electric-indigo);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--porcelain) 0%, #e8eaf6 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-graphite);
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Page Main */
.page-main {
    min-height: calc(100vh - 200px);
}

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

.content-section.alt-bg {
    background-color: var(--porcelain);
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--deep-graphite);
    margin-bottom: 32px;
    text-align: center;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

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

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

.content-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

.content-text p {
    margin-bottom: 24px;
}

.content-image {
    height: 300px;
    border-radius: 12px;
}

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

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-graphite);
    margin-bottom: 16px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    min-height: 120px;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-graphite);
    margin-bottom: 8px;
}

.team-role {
    color: var(--electric-indigo);
    font-weight: 500;
    margin-bottom: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--electric-indigo) 0%, #4A4AC4 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-primary {
    background-color: var(--citrus);
    color: var(--deep-graphite);
}

.cta-section .btn-primary:hover {
    background-color: #FFB82E;
}

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

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

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--deep-graphite);
    margin-top: 48px;
    margin-bottom: 24px;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-graphite);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.legal-content a {
    color: var(--electric-indigo);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: var(--porcelain);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: var(--deep-graphite);
}

/* Cookie Table */
.cookie-table {
    margin: 32px 0;
}

.cookie-table h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--deep-graphite);
    margin-bottom: 12px;
    margin-top: 24px;
}

.cookie-table p {
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--electric-indigo);
    background-color: var(--porcelain);
    padding: 16px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-section h2 {
        font-size: 1.875rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 1.875rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .value-card,
    .team-member {
        padding: 24px;
    }
}