.result-section {
    max-width: 1200px;
    margin: 0 auto;
}

.success-header {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.success-icon i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.stats-card,
.download-card,
.detail-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.card-subtitle {
    color: var(--secondary-color);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.card-body {
    padding: 1.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--secondary-color);
}

.info-value {
    font-weight: 600;
    color: var(--dark-color);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-info {
    display: flex;
    justify-content: between;
    align-items: center;
}

.stat-name {
    font-weight: 500;
    color: var(--dark-color);
}

.stat-count {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.stat-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.download-section {
    margin: 2rem 0;
}

.download-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.option-icon.pdf {
    background: var(--danger-color);
}

.option-icon.docx {
    background: var(--primary-color);
}

.option-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.option-description {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.changes-detail {
    margin: 2rem 0;
}

.changes-table {
    font-size: 0.875rem;
}

.changes-table th {
    background: var(--light-color);
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem;
}

.changes-table td {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    vertical-align: middle;
}

.original-value {
    font-family: monospace;
    color: var(--secondary-color);
}

.anonymized-value {
    font-family: monospace;
    font-weight: 600;
    color: var(--success-color);
}

.occurrence-badge {
    background: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.action-section {
    margin: 3rem 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-alert {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .success-header {
        padding: 2rem 1rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .download-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .download-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .changes-table {
        font-size: 0.75rem;
    }
    
    .changes-table th,
    .changes-table td {
        padding: 0.75rem 0.5rem;
    }
}