/* Auxiliary Pages Styles */

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

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

.page-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

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

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

.section-title {
    text-align: center;
    color: #1e293b;
    margin-bottom: 40px;
}

/* About Page Specific Styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.content-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.content-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

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

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

.approach-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.approach-item h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.approach-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Story Content */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    color: #1e293b;
    margin-bottom: 30px;
}

.story-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

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

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #1e293b;
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Contact Info in Policies */
.contact-info {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Ensure cookie banner doesn't interfere with page content */
body {
    padding-bottom: 0;
}

body.cookie-banner-visible {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    body.cookie-banner-visible {
        padding-bottom: 140px;
    }
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-title {
        padding: 40px 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.75rem;
    }
    
    .approach-item,
    .value-item {
        padding: 20px;
    }
    
    .policy-content {
        padding: 0 10px;
    }
    
    .contact-info {
        padding: 15px;
    }
}