/* Page-specific styles for About, Privacy, Terms, and Cookie pages */

.page-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f5f5f0;
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #b5b5b5;
    margin: 0;
}

.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f7f6f3 0%, #f1f0ec 100%);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.content-block.centered {
    text-align: center;
}

.content-block h2 {
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* About page content grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-text h2 {
    margin-bottom: 2rem;
    color: #2a2a2a;
}

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

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

/* Values Grid (for About page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.08);
    text-align: center;
}

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

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

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Empty content styling for placeholder pages */
.empty-content {
    background: #f9f9f6;
    border: 2px dashed #d4d1c9;
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-content p {
    color: #6a6a6a;
    font-size: 1.125rem;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .empty-content {
        padding: 3rem 1.5rem;
        min-height: 200px;
    }
}