/* Auxiliary Pages Styles */

/* Page Hero Section */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.last-updated {
    font-size: 1rem;
    color: #059669;
    text-align: center;
    font-weight: 500;
}

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

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

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

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

.content-text h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.content-text li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.content-image .image-placeholder {
    height: 300px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
}

.content-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-main-image:hover {
    transform: translateY(-2px);
}

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

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

/* Team Section */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.expertise-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.expertise-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Legal Content Styles */
.privacy-content,
.terms-content,
.cookie-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2,
.terms-content h2,
.cookie-content h2 {
    color: #1a1a1a;
    margin: 3rem 0 1.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.privacy-content h2:first-child,
.terms-content h2:first-child,
.cookie-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.privacy-content h3,
.terms-content h3,
.cookie-content h3 {
    color: #2563eb;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.privacy-content ul,
.terms-content ul,
.cookie-content ul {
    margin: 1rem 0 2rem 0;
    padding-left: 2rem;
}

.privacy-content li,
.terms-content li,
.cookie-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.privacy-content strong,
.terms-content strong,
.cookie-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-info-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: #4a5568;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Footer Updates */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .values-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .privacy-content,
    .terms-content,
    .cookie-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .value-card,
    .expertise-item {
        padding: 1.5rem;
    }
    
    .privacy-content h2,
    .terms-content h2,
    .cookie-content h2 {
        font-size: 1.8rem;
    }
}