/* Auxiliary Pages Specific Styles */

/* Add top margin to account for fixed header */
.auxiliary-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 24px;
}

/* Company Info */
.company-info {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
}

.info-item span {
    color: var(--text-color);
}

/* Legal Placeholder */
.legal-placeholder {
    background: #f8f9ff;
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 24px;
}

.legal-placeholder p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

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

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: center;
}

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

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.about-image .placeholder-image {
    width: 100%;
    height: 300px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.about-svg-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-svg-container svg {
    max-width: 100%;
    height: auto;
}

/* Legal content styles */
.content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.contact-info-legal {
    background: #f8f9ff;
    padding: 24px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 16px 0;
}

.contact-info-legal p {
    margin-bottom: 8px;
    color: var(--text-color);
}

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

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .auxiliary-main {
        margin-top: 70px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .company-info {
        padding: 24px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .info-item strong {
        min-width: auto;
    }
    
    .legal-placeholder {
        padding: 24px;
    }
    
    .contact-info-legal {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .about-image .placeholder-image {
        height: 200px;
    }
}