/* Additional styles for auxiliary pages */

/* Page Navigation */
.page-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.page-nav a {
    color: #2D3748;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-nav a:hover {
    background-color: #F7FAFC;
    color: #E53E3E;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-content {
    background: #F7FAFC;
    border: 2px dashed #CBD5E0;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #4A5568;
}

.placeholder-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

/* Company Info Styles (for About page) */
.company-info {
    padding: 60px 0;
    background: white;
}

.content-grid {
    display: grid;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 16px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 24px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E53E3E, #22543D);
    border-radius: 2px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 20px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Features List */
.features-list {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #E53E3E;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Company Details */
.company-details {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.detail-item strong {
    color: #2D3748;
    font-weight: 600;
    min-width: 120px;
    margin-right: 16px;
}

.detail-item span {
    color: #4A5568;
    flex: 1;
    line-height: 1.5;
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: #F7FAFC;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 12px;
    border-left: 4px solid #E53E3E;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 16px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 16px;
}

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

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

.policy-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 8px;
}

.policy-section strong {
    color: #2D3748;
    font-weight: 600;
}

.last-updated {
    text-align: center;
    background: #2D3748;
    color: white;
    border-left: 4px solid #22543D;
}

.last-updated p {
    color: white;
    font-size: 14px;
    margin: 0;
}

/* About Page Specific Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 60px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #F7FAFC;
    padding: 40px;
    border-radius: 16px;
}

.hero-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 20px;
}

.about-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-with-illustration,
.content-with-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 16px;
}

.tech-features {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    color: #2D3748;
}

.company-details-section {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.company-details-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 32px;
}

.company-details {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-row.full-width {
    grid-template-columns: 1fr;
}

.detail-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid #E53E3E;
}

.detail-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.detail-item span {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.5;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-block {
        padding: 32px 24px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .placeholder-content {
        padding: 40px 24px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-item strong {
        min-width: auto;
        margin-bottom: 4px;
        margin-right: 0;
    }
    
    .page-nav {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-section,
    .content-with-illustration,
    .content-with-photo {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        padding: 24px 20px;
    }
    
    .about-photo {
        height: 200px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .content-text h2 {
        font-size: 22px;
    }
}