/* Pages CSS - Styles for auxiliary pages */

/* Page Header */
.page-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.back-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.back-link:hover {
    background-color: #f7fafc;
    color: #2c5aa0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.page-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 0;
}

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

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

.content-section.cta-section {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    text-align: center;
}

.content-section.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.content-section.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-image {
    background: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
}

/* Mission Content */
.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-statement h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

/* Approach Content */
.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.approach-list {
    list-style: none;
    margin: 1.5rem 0;
}

.approach-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #3182ce;
    background: rgba(49, 130, 206, 0.05);
    padding: 1rem;
    border-radius: 0 6px 6px 0;
}

.approach-image {
    background: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    margin-top: 1rem;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
    background: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
    border: 1px solid #e2e8f0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2d3748;
    background: #edf2f7;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.cookie-purpose {
    color: #4a5568;
}

.cookie-duration {
    color: #718096;
    font-size: 0.9rem;
    text-align: right;
}

/* Footer Updates */
.footer-links {
    margin-left: 2rem;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #90cdf4;
}

/* CTA Content */
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .content-grid,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-values,
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cookie-duration {
        text-align: left;
        font-style: italic;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .approach-list li {
        padding: 0.75rem;
    }
    
    .expertise-card,
    .value-item {
        padding: 1.5rem 1rem;
    }
}