/* --- EXPORT PAGE STYLES --- */

.global-stats-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-box {
    border: 1px solid #E1D8C9;
    padding: 40px 20px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.stat-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #A68A64;
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    font-weight: 500;
}

.export-process-section {
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: 1px solid #E1D8C9;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background-color: #3A2318;
    color: #A68A64;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #3A2318;
}

.timeline-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}
