/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #64748b;
    font-size: 1.125rem;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section.alt-bg {
    background-color: #f8fafc;
}

.content-section h2 {
    color: #334155;
    margin-bottom: 2rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #64748b;
}

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

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-visual {
    display: flex;
    justify-content: center;
}

/* Mission Chart */
.mission-chart {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 250px;
}

.chart-title {
    font-weight: 600;
    color: #334155;
    margin-bottom: 1.5rem;
}

.impact-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.approach-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.approach-item h3 {
    color: #334155;
    margin-bottom: 1rem;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Technology Overview */
.tech-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tech-content h3 {
    color: #334155;
    margin-bottom: 1rem;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tech-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 24px;
}

.tech-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

/* Architecture Diagram */
.architecture-diagram {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.diagram-title {
    font-weight: 600;
    color: #334155;
    margin-bottom: 1.5rem;
    text-align: center;
}

.architecture-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #334155;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #334155;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Info in Legal Pages */
.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #06b6d4;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #06b6d4;
    font-weight: 500;
}

/* Cookie Tables */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
}

.cookie-table td {
    color: #64748b;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Header Logo Link */
.header .logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header .logo-section a:hover .brand-name {
    color: #06b6d4;
}

/* Button Variants */
.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-secondary {
    background: #e2e8f0;
    color: #334155;
}

.btn-secondary:hover {
    background: #cbd5e1;
    color: #334155;
}

/* Mission Chart */
.mission-chart {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 250px;
}

.mission-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.architecture-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.value-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.recognition-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

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

.team-image {
    display: flex;
    justify-content: center;
}

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

.recognition-list {
    margin-top: 2rem;
}

.recognition-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #06b6d4;
}

.recognition-item h4 {
    color: #334155;
    margin-bottom: 0.5rem;
}

.recognition-item p {
    margin: 0;
    font-size: 0.9rem;
}

.recognition-visual {
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid,
    .tech-overview,
    .team-content,
    .recognition-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .approach-item,
    .value-item,
    .stat-item {
        padding: 1.5rem;
    }
}