/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-content .logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.header-content .brand-name {
    color: white;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Page Hero */
.page-hero {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

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

.content-section.cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

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

.content-section.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.section-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 400px;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Mission Points */
.mission-points {
    margin-top: 32px;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.point-icon {
    width: 32px;
    height: 32px;
    color: #6366f1;
    flex-shrink: 0;
    margin-top: 4px;
}

.point-icon svg {
    width: 100%;
    height: 100%;
}

.point-text h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.point-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

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

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #6366f1;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.team-member {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-photo {
    margin-bottom: 24px;
}

.member-photo .image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    min-height: 120px;
}

.member-photo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Legal Content */
.legal-content {
    padding: 40px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #6366f1;
    padding-bottom: 8px;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: #374151;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 16px 0 8px;
    color: #4b5563;
}

.legal-section p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #4b5563;
}

.legal-section a {
    color: #6366f1;
    text-decoration: none;
}

.legal-section a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Contact Info in Legal Pages */
.contact-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
    margin-top: 20px;
}

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

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

/* Cookie Duration Table */
.cookie-duration-table {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.cookie-duration-table h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cookie-duration-table ul {
    margin: 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .legal-document {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .breadcrumb {
        order: -1;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .legal-document {
        padding: 24px 16px;
        margin: 0 8px;
    }
    
    .team-member,
    .value-card {
        padding: 24px;
    }
    
    .member-photo .image-placeholder {
        width: 100px;
        height: 100px;
        min-height: 100px;
    }
    
    .member-photo-img {
        width: 100px;
        height: 100px;
    }
}